@stellect/mcp-server
v0.1.0
Published
MCP server exposing Stellect tools to AI agents
Maintainers
Readme
@stellect/mcp-server
MCP (Model Context Protocol) server that exposes Stellect tools to AI agents like Claude Desktop.
Tools
| Tool | Input | Description |
|------|-------|-------------|
| list_services | { category?: string } | Browse the service bazaar |
| call_paid_api | { endpoint, method, params } | Pay for and call an API |
| check_balance | {} | View wallet USDC/XLM balance |
| get_spending_history | { limit?: number } | Recent transactions |
Setup with Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"stellect": {
"command": "node",
"args": ["/path/to/packages/mcp-server/dist/index.js"],
"env": {
"STELLECT_PASSPHRASE": "your-passphrase",
"STELLECT_GATEWAY_URL": "http://localhost:4021",
"STELLAR_NETWORK": "testnet"
}
}
}
}Restart Claude Desktop. The four tools will appear in the tool list.
Run Standalone
npm run build
npm run dev # Starts MCP server on stdioDevelopment
All output to stdout is MCP protocol. Use console.error() for debug logging.
Tests
npm test # 9 tests for all 4 toolsLicense
MIT
