JSPM

@stellect/mcp-server

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 124
  • Score
    100M100P100Q8675F
  • License MIT

MCP server exposing Stellect tools to AI agents

Package Exports

  • @stellect/mcp-server
  • @stellect/mcp-server/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stellect/mcp-server) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

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 stdio

Development

All output to stdout is MCP protocol. Use console.error() for debug logging.

Tests

npm test  # 9 tests for all 4 tools

License

MIT