Creativity · MCP — server

MCP Anytype Server

The MCP Anytype Server uses Anytype's local middleware to read and write objects inside a user's encrypted, local-first knowledge graph. It lets Claude create notes, link concepts, and query objects by type or relation — without any data leaving the device unless the user explicitly shares a space.

MCP facts

Kind
server
Ecosystem
anthropic-mcp
Language
Go / TypeScript
Transports
stdio

Capabilities

  • Tools: create_object, search_objects, get_object, set_relation, list_types
  • Resources: anytype://space/{id}/object/{id}
  • Auth: local Anytype account passphrase; server runs on-device

Install

npx -y @community/mcp-server-anytype

Configuration

{
  "mcpServers": {
    "anytype": {
      "command": "npx",
      "args": ["-y", "@community/mcp-server-anytype"],
      "env": {
        "ANYTYPE_GRPC_URL": "127.0.0.1:31007"
      }
    }
  }
}

Frequently asked questions

Where does the data live?

Entirely on the user's device, encrypted. Syncing between devices happens through Anytype's P2P/backup nodes, but the MCP server talks only to the local middleware.

Is there a public API?

Anytype exposes a local gRPC/HTTP middleware used by the official desktop app. Community MCP servers wrap those calls; the API surface evolves as Anytype matures.

How is it different from Notion MCP?

Notion is cloud-hosted with a rich block API. Anytype is local-first, graph-shaped (objects and relations), and offline-friendly.

Sources

  1. Anytype documentation — accessed 2026-04-20
  2. Anytype GitHub — accessed 2026-04-20
  3. Model Context Protocol — accessed 2026-04-20