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スター
149
ユーザー評価
未評価
お気に入り
0
閲覧数
45
フォーク
14
イシュー
4
インストール方法
難易度
中級推定所要時間
10-20 分
インストール方法
インストール方法
前提条件
必要なソフトウェアとバージョンを明記してください。Node.js: 18.0.0以上
npm: 8.0.0以上
インストール手順
1. リポジトリのクローン
bash
git clone https://github.com/anyproto/anytype-mcp
cd anytype-mcp
2. 依存関係のインストール
bash
npm install
3. MCPクライアントの設定
mcp_client_config.json
を編集してMCPサーバーを追加:
json
{
"mcpServers": {
"anytype": {
"command": "npx",
"args": ["-y", "@anyproto/anytype-mcp"],
"env": {
"OPENAPI_MCP_HEADERS": "{\"Authorization\":\"Bearer \", \"Anytype-Version\":\"2025-05-20\"}"
}
}
}
}
4. サーバーの起動
bash
npm start
トラブルシューティング
よくある問題
問題: サーバーが起動しない 解決策: Node.jsのバージョンを確認し、依存関係を再インストールしてください。 問題: APIキーが無効です 解決策: APIキーを再確認し、正しい形式で設定してください。作者情報
5,205
フォロワー
79
リポジトリ
0
Gist
0
貢献数
関連するMCP
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.