-
Notifications
You must be signed in to change notification settings - Fork 16
Readme Polish + License #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -0,0 +1,21 @@ | |||
MIT License |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Used MIT because all the SDKs are licensed that way.
This command will install the MCP server in your current project. | ||
If you want to install it globally, you can run the command with `-s <scope>` flag. | ||
See `claude mcp add --help` for more options. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By default the MCP is added to local
, which for claude is the very literal path you were at when you ran the command. I think this is why it didn't work when you moved directories.
TIL: you can find this config at ~/.claude.json
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah nice find!
## Configuration | ||
|
||
### Environment Variables | ||
|
||
- `POLYGON_API_KEY` (required): Your Polygon.io API key | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made a few edits like this just to make things more concise.
## Contributing | ||
If you found a bug or have an idea for a new feature, please first discuss it with us by submitting a new issue. | ||
We will respond to issues within at most 3 weeks. | ||
We're also open to volunteers if you want to submit a PR for any open issues but please discuss it with us beforehand. | ||
PRs that aren't linked to an existing issue or discussed with us ahead of time will generally be declined. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also borrowed from the SDK readmes
], | ||
"env": { | ||
"POLYGON_API_KEY": "<your_api_key_here>", | ||
"HOME": "<your_home_directory>" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this was only needed because the repo is private, so we might be able to remove later.
6866eb2
to
c5ae472
Compare
Description
Some minor edits + the Claude Desktop config we talked about. Some comments inline below.