-
Notifications
You must be signed in to change notification settings - Fork 0
1.0.0 release #2
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,18 +1,64 @@ | ||
| # Rover MCP | ||
|
|
||
| This package wraps Rover's MCP SSE endpoint, allowing you to use Curio with any MCP client with support for the `stdio` transport. | ||
| You can generate an API key from your Rover dashboard. | ||
|
|
||
| ## Configuration examples | ||
|
|
||
| You may have to specify absolute paths in the `command` field below. | ||
| If you don't have a JavaScript runtime installed, you can grab a binary from the latest release instead (you will have to manually update it). | ||
|
|
||
| ### Using npx | ||
|
|
||
| ```json | ||
| { | ||
| "mcpServers": { | ||
| "rover": { | ||
| "command": "npx", // Or bunx | ||
| "command": "npx", | ||
| "args": ["-y", "@getrover/mcp-cli@latest"], | ||
| "env": { | ||
| "ROVER_API_KEY": "" | ||
| "ROVER_API_KEY": "<rak-xxxxxx...>" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| ``` | ||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [Re: lines +7 to +8] The See this comment inline on Graphite.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yeah, having another example works, i'll add a seperate bun example, ty! |
||
| This package wraps Rover's MCP SSE endpoint, allowing you to use Curio with any MCP client with support for the `stdio` transport. | ||
| You can generate an API key from your Rover dashboard. | ||
| ### Using bunx | ||
|
|
||
| ```json | ||
| { | ||
| "mcpServers": { | ||
| "rover": { | ||
| "command": "bunx", | ||
| "args": ["--bun", "@getrover/mcp-cli@latest"], | ||
| "env": { | ||
| "ROVER_API_KEY": "<rak-xxxxxx...>" | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| ``` | ||
|
|
||
| ### Using the binary | ||
|
|
||
| ```sh | ||
| # Optionally, put the file somewhere on your path | ||
| $ wget -O rover-mcp https://github.com/DocumaticAI/mcp-cli/releases/download/latest/rover-mcp-<os>-<arch> | ||
| $ chmod +x rover-mcp | ||
| ``` | ||
|
|
||
| ```json | ||
| { | ||
| "mcpServers": { | ||
| "rover": { | ||
| "command": "/path/to/rover-mcp", | ||
| "env": { | ||
| "ROVER_API_KEY": "<rak-xxxxxx...>" | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| ``` | ||
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.
[Re: line +10]
Might be worth explicitly having something like:
See this comment inline on Graphite.