trackmcp
Back to directory

🤖 Axone’s MCP server – gateway to the dataverse for AI-powered tools

3 stars GoOthers Updated Aug 24, 2026
aimcp-servers3

Documentation

axone-mcp

> 🤖 Axone’s MCP server – gateway to the dataverse for AI-powered tools

MCP Protocol
Smithery
Version
Lint
Build
Test
Codecov
Conventional commits
Semantic-release
Contributor Covenant
License

Axone’s MCP server

Axone’s MCP server is a lightweight implementation that

exposes Axone’s capabilities through the standardized Model-Context Protocol.

mermaid
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: "AxoneMCP server" }
    axone:::system@{ shape: das, label: "🔗 Axone chain" }

    actor -- query --> mcpServer

    mcpServer -. query .-> axone

Available tools

`get_dataverse_info`

Get information about the given dataverse.

Input schema

json
{
  "dataverse": {
    "type": "string",
    "description": "The address of the dataverse contract"
  }
}

`get_resource_governance_code`

Get the governance code attached to the given resource (if any).

Input schema

json
{
  "dataverse": {
    "type": "string",
    "description": "The address of the dataverse contract"
  },
  "resource": {
    "type": "string",
    "description": "The DID URI of the resource"
  }
}

Installation

Get the latest release and put it in your $PATH or somewhere you can easily access.

Usage with Claude

Add this to your `claude_desktop_config.json` Claude Desktop configuration file:

json
{
  "mcpServers": {
    "axone": {
      "command": "axone-mcp",
      "args": [
        "serve",
        "stdio",
        "--node-grpc",
        "grpc.dentrite.axone.xyz:443"
      ]
    }
  }
}

Flags:

  • `--node-grpc`: The gRPC endpoint of the Axone node to connect to.

Run with SSE transport

sh
axone-mcp serve sse --listen-addr localhost:8080 --node-grpc grpc.dentrite.axone.xyz:443

Run with STDIO transport

sh
axone-mcp serve stdio --node-grpc grpc.dentrite.axone.xyz:443

Build

  • Be sure you have Golang installed.
  • Docker as well if you want to use the Makefile.
sh
make build

Frequently asked questions

What is axone-mcp?

axone-mcp is 🤖 Axone’s MCP server – gateway to the dataverse for AI-powered tools

How do I install axone-mcp?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is axone-mcp open source?

Yes — it is hosted on GitHub at https://github.com/axone-protocol/axone-mcp and has 3 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP