This is a Model Context Protocol (MCP) server implementation for fetching machine learning inferences from the Allora Network, providing access to Allora's prediction markets data through the Model Context Protocol.
The Allora MCP server allows AI systems and applications to access Allora prediction markets data through the standardized Model Context Protocol (MCP), enabling seamless integration of prediction market data into AI workflows. This server provides direct access to Allora topics, market predictions, and inference data.
- Node.js 18 or higher
- An Allora API key (sign up at alloralabs.com)
- Clone the repository
git clone https://github.com/your-username/allora-mcp.git
cd allora-mcp- Install dependencies
npm install- Set up environment variables
Create a .env file in the project root (or copy from .env.example):
PORT=3001
ALLORA_API_KEY=your_api_key
npm run devnpm run buildnpm startdocker build -t allora-mcp .# Run the container
docker run -p 3001:3001 -e PORT=3001 -e ALLORA_API_KEY=your_api_key allora-mcp
# Or with environment variables in a file
docker run -p 3001:3001 --env-file .env allora-mcpCreate a docker-compose.yml file:
version: '3'
services:
allora-mcp:
build: .
ports:
- "3001:3001"
environment:
- PORT=3001
- ALLORA_API_KEY=your_api_keyThen run:
docker-compose upOnce the server is running, you can interact with it using any MCP client. The server exposes the following endpoints:
GET /sse- SSE connection endpoint for MCP communicationsPOST /messages- Message endpoint for MCP communications
| Tool Name | Description | Parameters |
|---|---|---|
list_all_topics |
Fetch a list of all Allora topics | None |
get_inference_by_topic_id |
Fetch inference data for a specific topic | topicID: number |
When connected to Claude or other MCP-compatible AI systems, you can access Allora data with:
What topics are available in Allora?
Or get specific inference data:
What is the current prediction for BTC price in 8 hours?
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.