Anytype MCP Server

MCP server for Anytype API integration

Local serverstdioTypeScript

What is the Anytype MCP MCP server?

Most developer tooling work still happens through a UI a human drives. Anytype MCP MCP server moves it into the conversation instead. MCP server for Anytype API integration.

The short version

An MCP (Model Context Protocol) server that provides access to the Anytype API, allowing AI assistants and other MCP clients to interact with your Anytype data.

  • Get list of spaces (get_spaces)
  • Search/Get objects within a space (get_objects, search_space) or globally (global_search)
  • Get detailed object content (get_object_content, supports retrieving full text)
  • Create and delete spaces (create_space) and objects (create_object, delete_object)
  • Export objects as markdown (export_object)
  • Manage list views and objects within lists (get_list_views, get_list_view_objects, add_objects_to_list, remove_object_from_list)

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

What it needs from you

Configuration is passed through the environment: ANYTYPE_APP_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js 18 or higher - Anytype desktop application running locally - An Anytype account

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. It is maintained by Qwinty; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Anytype MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Configuration

  • Node.js 18 or higher - Anytype desktop application running locally - An Anytype account
VariableDescriptionRequired
ANYTYPE_APP_KEYCredential the server authenticates with.Yes

Frequently asked questions

It connects Anytype MCP to MCP-compatible AI assistants such as Claude and Cursor. Instead of copying data back and forth by hand, the assistant works with Anytype MCP directly.