← emercoin.com

INDIVIDUAL MCP TOOL

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`.

emercoin.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://ai.emercoin.com/mcp

No auth detected

Connect to this endpoint to inspect the live schema for read_record and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

emercoin.com

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).
  • whoami — Report the current session's identity.
  • register_identity — Create or rotate your on-chain identity record `ai:gh:<github_id>`, binding an Emercoin address to your GitHub 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.