A

Anytype

Query Anytype spaces and objects.

·No reviews yet
Repo
Share:

About

Auto-generated

Anytype is a Model Context Protocol server in the Productivity category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

create_task
Create a new task
list_tasks
List tasks with filters
update_task
Update fields of an existing task

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Anytype.

What is the purpose of the Anytype MCP?
The Anytype MCP allows you to programmatically access and query data from your Anytype spaces and objects. This enables integration with other tools and automated workflows for knowledge management and productivity.
How can I install the Anytype MCP in a client like Claude Desktop?
Installation in clients like Claude Desktop typically involves adding the MCP's slug, 'anytype', to your client's configuration. The transport mechanism is 'stdio', which usually means the client manages the connection to a local process.
Does the Anytype MCP require an API key for authentication?
Yes, the Anytype MCP uses an API key for authentication. You will need to provide a valid API key to interact with your Anytype data through this MCP.
What are the primary capabilities of the Anytype MCP?
The primary capabilities of the Anytype MCP revolve around querying your Anytype spaces and objects. This allows you to retrieve specific data, potentially filter it, and integrate it into other applications.
Are there any known limitations or prerequisites for using the Anytype MCP?
A realistic limitation is that features are dependent on the Anytype API itself. The MCP's functionality will be constrained by what the underlying Anytype platform exposes through its own interfaces.

Install Anytype

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "anytype": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-anytype"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "anytype": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-anytype"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "anytype": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-anytype"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.