轴突mcp
🤖 轴突s 主控程序 服务器——人工智能工具通往数据世界的门户
 
](https://github.com/axone-protocol/axone-mcp/releases)    
 
 
Axone的MCP服务器
轴突s 主控程序 服务器是一个轻量级的实现 通过标准化的模型上下文协议公开Axone的功能。
flowchart LR
classDef actor stroke:#808
classDef system stroke:#0ff
classDef resource stroke:#f00
actor:::actor@{ shape: stadium, label: "Host with MCP Client
(Claude, IDEs, Tools)" }
mcpServer:::system@{ shape: rounded, label: "Axone
MCP server" }
axone:::system@{ shape: das, label: "🔗 Axone chain" }
actor -- query --> mcpServer
mcpServer -. query .-> axone可用工具
get_resource_governance_code
获取附加到给定资源的治理代码(如果有的话)。
输入架构
{
"dataverse": {
"type": "string",
"description": "The address of the dataverse contract"
},
"resource": {
"type": "string",
"description": "The DID URI of the resource"
}
}安装
获取最新 发布 并将其放入$PATH或您可以轻松访问的地方。
与Claude一起使用
将此添加到您的 claude_desktop_config.json 克劳德桌面 配置文件:
{
"mcpServers": {
"axone": {
"command": "axone-mcp",
"args": [
"serve",
"stdio",
"--node-grpc",
"grpc.dentrite.axone.xyz:443"
]
}
}
}旗帜:
--node-grpc:要连接的Axone节点的gRPC终结点。
使用SSE传输运行
axone-mcp serve sse --listen-addr localhost:8080 --node-grpc grpc.dentrite.axone.xyz:443使用STDIO传输运行
axone-mcp serve stdio --node-grpc grpc.dentrite.axone.xyz:443构建
make build