@sphereone/orbit-mcp-cli
v1.0.1
Published
Orbit MCP Server
Readme
Orbit MCP Server Cli
A CLI that runs a Model Context Protocol server that provides access to Orbit's blockchain agent capabilities.
Features
- Cross-chain operations (EVM and Solana)
- Token swaps, bridges, transfers
- Solana-specific features
- Yield farming
- Staking
- Liquidity pool deposits
- Meme token suggestions
- Real-time market analysis and token data
Setup in Local
- Clone the repository
- Copy
.env.exampleto.envand configure:ORBIT_BASE_URL="your-orbit-base-url" - Install dependencies:
npm install - Build:
npm run build - To link the cli (mac only):
npm link - To add it to your path (mac only):
npm prefix -g - Verify if
orbit-clihas been added to path (mac only):hash-r && ls -l $(npm prefix -g)/bin/
- If you see
orbit-cli, it has been added correctly. - To test, run
orbit-cli --version, and you should see0.0.1.
Usage
To run it in Claude Desktop or Cursor (MacOnly):
{
"mcpServers": {
"orbit-server": {
"command": "orbit-cli",
"args": [
"run",
"--api-key",
"xxx"
]
}
}
}To remove the cli from your local (mac only):
- unlike globally:
npm unlink -g @sphereone/orbit-mcp-cli - refresh terminal cache:
hash -r && ls -l $(npm prefix -g)/bin/
- To verify if it has been removed, you need to check if
orbit-cliis there or not. If it is not found, then you have successfully removed it.
