trackmcp
Back to directory
fengshanshan

relate-account-mcp

View on GitHub

Related Identity MCP Server

0 stars JavaScriptOthers Updated Jun 30, 2025

Documentation

Related Identity MCP Server

A Model Context Protocol (MCP) server that helps discover related blockchain addresses and domain names for web3 identities across different platforms.

Tools

  • 🔍 get-related-address

Find related addresses across Ethereum, Farcaster, Lens, and other web3 platforms. Leverages the data source in relation-server of next.id.

Configuration

Add the following configuration to your MCP client settings:

Claude Desktop

Add to your `claude_desktop_config.json`:

json
//to your local relate-account-service
{
  "mcpServers": {
    "relate-account": {
      "command": "node",
      "args": ["/absolute/path/to/relate-account-mcp/build/index.js"]
    },
    "env": {
        "DATA_API_URL": "https://graph.web3.bio/graphql",
        "ACCESS_TOKEN":"YOUR_ACCESS_TOKEN" //if no access_token, will be limited after a certain amount of request
    }
  }
}

//use publish service
{
  "mcpServers": {
    "relate-account": {
      "command": "npx",
      "args": [
        "-y",
        "@fengshanshan/mcp-server-relate-account"
      ],
      "env": {
        "DATA_API_URL": "https://graph.web3.bio/graphql",
        "ACCESS_TOKEN":"YOUR_ACCESS_TOKEN" //if no access_token, will be limited after a certain amount of request
        }
    }
  }
}

Other MCP Clients

Use the built binary directly:

bash
node /path/to/relate-account-mcp/build/index.js

Usage

Once configured, you can use the `get-related-address` tool in your MCP client:

Parameters

  • platform (string): The platform to search on (e.g., "ethereum", "farcaster", "lens", "ens")
  • identity (string): The user's identity (address, ENS domain, username, etc.)

Development

bash
# Install dependencies
npm install

# Build TypeScript
npm run build

# The compiled JavaScript will be in the build/ directory

Frequently asked questions

What is relate-account-mcp?

relate-account-mcp is Related Identity MCP Server

How do I install relate-account-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 relate-account-mcp open source?

Yes — it is hosted on GitHub at https://github.com/fengshanshan/relate-account-mcp.

Related MCP tools

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

Measure it with TrackMCP