A Model Context Protocol (MCP) server that provides access to most of Bittensor's subnets using BitMind's oracle-api, allowing AI assistants like Claude to interact with Bittensor's network.
The Model Context Protocol (MCP) is a standardized way for AI assistants to interact with external tools and data sources. This server implements the MCP specification to provide access to Bittensor's network of AI models.
- A Bittensor API token from BitMind
To use this MCP server with Claude or other MCP clients, add it to your configuration:
{
"mcpServers": {
"bittensor": {
"command": "npx",
"args": ["-y", "@bitmind/bittensor-mcp"],
"env": {
"BITMIND_API_TOKEN": "<YOUR_API_TOKEN>"
}
}
}
}
That's it! Claude will now be able to access Bittensor's subnets through this MCP server.
If you're interested in contributing to this project or running it locally, please see the Development Guide for detailed instructions.
This project is licensed under the MIT License - see the LICENSE file for details.