Independent Reserve MCP Server
Provides real-time cryptocurrency market data from the Independent Reserve exchange, enabling users to query current prices, ticker information, and order book data for various currency pairs through natural language.
README
Independent Reserve MCP Server
This Model Context Protocol (MCP) server provides real-time cryptocurrency data from the Independent Reserve exchange to AI assistants. It allows you to ask questions about cryptocurrency prices and market data.
test
Features
- Real-time Ticker Data: Get the latest price, bid, ask, and volume for any currency pair.
- Real-time Order Book Data: View the current buy and sell orders.
- Automatic Reconnection: The client will automatically reconnect if the connection is lost.
- Easy to Use: Exposes simple tools that an AI can understand.
Project Structure
server.py: The main MCP server that handles tool calls from the AI.ir_client.py: The WebSocket client that connects to the Independent Reserve API and manages data streams.requirements.txt: The Python dependencies for the project..env.example: An example file for configuring your API keys.README.md: This file.
Setup
-
Clone this repository:
git clone <your-repo-url> cd independentreserve-mcp -
Install Python dependencies:
pip install -r requirements.txt -
Configure API Keys (Optional):
- For public data (tickers, order books), no API key is needed.
- If you want to add private data features later (like account balances), create a
.envfile in the project root. - Copy
.env.exampleto.envand fill in your Independent Reserve API keys.Then editcp .env.example .env.envwith your credentials.
Usage
Once the server is running, you can ask questions like:
- "What is the current price of Bitcoin in USD?"
- "Show me the order book for ETH/AUD."
The server provides the following tools:
get_ticker(primary_currency, secondary_currency): Gets the latest ticker information.get_order_book(primary_currency, secondary_currency): Gets the latest order book data.
Connecting to Claude Desktop
To use this server with Claude Desktop, you need to add it to your Claude configuration file.
-
Find your Claude Desktop config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
-
Add the server configuration: Open the file and add the following
mcpServersobject. Make sure to replace/path/to/your/independentreserve-mcpwith the absolute path to the project folder on your computer.{ "mcpServers": { "independentreserve": { "command": "python", "args": [ "/path/to/your/independentreserve-mcp/server.py" ], "env": { "IR_API_KEY": "your_api_key_if_needed", "IR_API_SECRET": "your_api_secret_if_needed" } } } } -
Restart Claude Desktop. After restarting, Claude will automatically connect to your new MCP server. You can now start asking it about cryptocurrency prices from Independent Reserve!
Next Steps and Improvements
- Authentication: Implement the signed message logic to subscribe to private channels like balance, orders, and trades. This would require adding new tools like
get_my_balance. - Smarter Subscriptions: Instead of subscribing every time a tool is called, the client could be smarter. For example, if the AI asks for the BTC/USD ticker, it could stay subscribed to it for a few minutes in case of follow-up questions.
- Error Handling: Add more robust error handling for invalid currency pairs or API errors.
- More Data: Add a tool for
get_recent_trades.
Disclaimer
This project is for educational purposes only. It is not intended to be used for financial advice.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.