anytype-mcp
An MCP server enabling AI assistants to interact with Anytype - a local and collaborative wiki - to organize objects, lists, and more through natural language.
GitHub Stars
149
User Rating
Not Rated
Favorites
0
Views
82
Forks
14
Issues
4
Installation
Difficulty
IntermediateEstimated Time
10-20 minutes
Installation
Installation
Prerequisites
Please specify required software and versions:Node.js: 18.0.0 or higher
npm: 8.0.0 or higher
Installation Steps
1. Clone Repository
bash
git clone https://github.com/anyproto/anytype-mcp
cd anytype-mcp
2. Install Dependencies
bash
npm install
3. Configure MCP Client
Editmcp_client_config.json to add the MCP server:
json
{
"mcpServers": {
"anytype": {
"command": "npx",
"args": ["-y", "@anyproto/anytype-mcp"],
"env": {
"OPENAPI_MCP_HEADERS": "{\"Authorization\":\"Bearer \", \"Anytype-Version\":\"2025-05-20\"}"
}
}
}
}
4. Start Server
bash
npm start
Troubleshooting
Common Issues
Issue: Server won't start Solution: Check Node.js version and reinstall dependencies. Issue: Invalid API key Solution: Recheck the API key and ensure it is set in the correct format.Additional Resources
Author Information
5,205
Followers
79
Repositories
0
Gists
0
Total Contributions
Related MCPs
git-mcp-server
122
An MCP (Model Context Protocol) server enabling LLMs and AI agents to interact with Git repositories. Provides tools for comprehensive Git operations including clone, commit, branch, diff, log, status, push, pull, merge, rebase, worktree, tag management, and more, via the MCP standard. STDIO & HTTP.