BittensorMCP
BittensorMCP
AI 에이전트가 MCP를 통해 Bittensor 체인에 실시간으로 접근할 수 있도록 하는 자체 수탁 방식의 도구입니다.
BittensorMCP란?
BittensorMCP는 AI 에이전트가 Bittensor 블록체인에 실시간으로 접근할 수 있도록 하는 호스팅된 Model Context Protocol (MCP) 서버입니다. Claude, Cursor, ChatGPT, VS Code, Windsurf, Zed, Codex 등 모든 MCP 클라이언트를 연결하여 잔액, 서브넷, 메타그래프, 검증자 및 알파 가격을 실시간으로 조회할 수 있습니다.
무료 읽기: 17가지 도구, 가입 불필요, API 키 불필요
프리미엄 쓰기: 자체 수탁 서명을 통한 17가지 온체인 작업(스테이킹, 전송, 등록, 가중치 설정)
단일 엔드포인트: Streamable HTTP 전송을 사용하는
https://bittensormcp.com/api/mcp
Related MCP server: thegraph-mcp
왜 자체 수탁인가?
귀하의 개인 키는 장치를 떠나지 않습니다.
BittensorMCP는 A2 이중 서명 프로토콜을 사용합니다. 서버가 UNSIGNED_PAYLOAD와 intent_id를 반환하면, 귀하는 로컬에서 sr25519 키로 서명하고 서명만 다시 보냅니다. 서버는 서명된 외부 트랜잭션을 브로드캐스트합니다. 귀하의 개인 키를 절대 보지 않고, 저장하지 않으며, 처리하지 않습니다.
┌─────────────┐ unsigned payload ┌─────────────┐
│ Your Key │ <─────────────────────── │ Bittensor │
│ (local) │ sign locally │ MCP │
│ │ ───────────────────────> │ Server │
└─────────────┘ signature only └──────┬──────┘
│
broadcast to
▼
┌─────────────┐
│ Bittensor │
│ Finney │
└─────────────┘빠른 시작
1. SDK 설치
npm install @bittensormcp/sign2. 인증 (자체 수탁)
import { generateWallet, authenticate } from '@bittensormcp/sign';
const wallet = await generateWallet();
const { token } = await authenticate({
endpoint: 'https://bittensormcp.com',
ss58: wallet.ss58,
signer: wallet.sign
});3. MCP 클라이언트 연결
Claude Code:
claude mcp add --transport http bittensormcp \
https://bittensormcp.com/api/mcp \
--header "Authorization: Bearer YOUR_JWT"Claude Desktop / Cursor / VS Code:
{
"mcpServers": {
"bittensormcp": {
"url": "https://bittensormcp.com/api/mcp",
"headers": { "Authorization": "Bearer YOUR_JWT" }
}
}
}네이티브 Streamable HTTP를 지원하지 않는 클라이언트:
{
"mcpServers": {
"bittensormcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://bittensormcp.com/api/mcp",
"--header", "Authorization:${AUTH_HEADER}"
],
"env": { "AUTH_HEADER": "Bearer YOUR_JWT" }
}
}
}각 클라이언트에 대한 단계별 연결 지침은 연결 가이드를 참조하세요.
도구 개요
카테고리 | 개수 | 예시 |
무료 읽기 | 17 |
|
프리미엄 쓰기 | 17 |
|
모든 쓰기 도구는 A2 자체 수탁 서명 흐름을 사용합니다. 프리미엄 활성화는 금고 주소로 TAO를 전송해야 합니다 (현재 요율은 bittensor_premium_status 확인).
라이선스
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseCqualityCmaintenanceAn MCP server providing unified access to blockchain operations, bridging, swapping, and crypto trading strategies for AI agents.37178GPL 3.0- AlicenseAqualityDmaintenanceAn MCP server that powers AI agents with indexed blockchain data from The Graph.3MIT
- FlicenseAqualityCmaintenanceProduction MCP server giving AI agents metered access to live Hedera blockchain data. Query token prices, screen identities, monitor governance, write tamper-evident HCS compliance records, and analyze smart contracts — all paid in HBAR micropayments per call.2021
- Alicense-qualityDmaintenanceAn MCP server that gives AI agents real-time access to DeFi across multiple chains, enabling non-custodial crypto trading, portfolio queries, and transaction execution.97MIT
Related MCP Connectors
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
Hosted AgentLux MCP server for marketplace, identity, creator, services, and social flows.
Cloud-hosted MCP server for durable AI memory
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/btmcp/pub'
If you have feedback or need assistance with the MCP directory API, please join our Discord server