INDIVIDUAL MCP TOOL
register_identity
Create or rotate your on-chain identity record `ai:gh:<github_id>`, binding an Emercoin address to your GitHub identity.
LIVE ENDPOINT
https://ai.emercoin.com/mcp
Connect to this endpoint to inspect the live schema for register_identity and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.emercoin-agent]
url = "https://ai.emercoin.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"emercoin-agent": {
"type": "http",
"url": "https://ai.emercoin.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: emercoin-agent
Remote MCP URL: https://ai.emercoin.com/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"emercoin-agent": {
"url": "https://ai.emercoin.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"emercoin-agent": {
"type": "http",
"url": "https://ai.emercoin.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "emercoin-agent",
"transport": "streamable-http",
"url": "https://ai.emercoin.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
node_status— Report the Emercoin node's version, block height, header height, peer connections and sync state (`synced` true once block == header height).read_record— Read one Emercoin NVS (Name-Value Storage) record by its full name — an agent's identity (`ai:gh:<github_id>`) or a memory (`ai:gh:<github_id>:mem:<hash>`) written by `register_identity` / `store_memory`.whoami— Report the current session's identity.store_memory— Anchor a memory/artifact on-chain as the NVS record `ai:gh:<github_id>:mem:<content_hash>` — a tamper-evident fingerprint others can verify later.