インストール不要。2分以内に動きます。
cloud.anythingmcp.com で無料トライアルを開始し、Nextcloud をワンクリックで追加して、AI クライアント(Claude、ChatGPT、Copilot、Cursor)を生成された MCP エンドポイントに向けるだけ。Docker も git clone も、開発経験も不要です。
Summary
Nextcloud OCS API: users, groups, file shares, app capabilities and server status on your own Nextcloud. Basic auth with an app password, the OCS-APIRequest header and format=json.
こう聞いてみよう
Nextcloud のサンプルプロンプト
プロンプトをクリックでコピー。Claude / ChatGPT / Cursor / Gemini / Copilot / OpenClaw に貼り付けて、このコネクターで実行できます。
Claude は AI のため誤ることがあります。回答をご確認ください。
💡 インストール不要? cloud.anythingmcp.com を直接利用してください。 サインインし、Connectors → Nextcloud をクリック、認証情報を貼り付け、MCP API キーを発行 — 完了です。Docker も
git cloneもローカルサーバーも不要。
Nextcloud + Cursor
Nextcloud OCS API: users, groups, file shares, app capabilities and server status on your own Nextcloud. Basic auth with an app password, the OCS-APIRequest header and format=json.
前提条件
完全なセットアップ手順はコネクタ自体に組み込まれています (ストアでコネクタを選択すると表示)。必要な環境変数:
NEXTCLOUD_URL, NEXTCLOUD_USERNAME, NEXTCLOUD_APP_PASSWORD
ステップ 1 — 認証情報を取得
Use an app password, never the account password.
- Sign in to Nextcloud and open Settings → Security → Devices & sessions.
- Create a new app password named e.g.
AnythingMCP. Nextcloud shows it once. - Set
NEXTCLOUD_URLto your instance root (no trailing slash),NEXTCLOUD_USERNAMEto the login name andNEXTCLOUD_APP_PASSWORDto the generated value. An app password can be revoked on its own, and it sidesteps two-factor authentication, which would otherwise break API access entirely.
…(continued in the in-app connector instructions)
ステップ 2 — アダプターをインストール
curl -fsSL https://raw.githubusercontent.com/HelpCode-ai/anythingmcp/main/docker-compose.quickstart.yml -o docker-compose.yml
printf 'JWT_SECRET=%s\nENCRYPTION_KEY=%s\n' "$(openssl rand -hex 32)" "$(openssl rand -hex 32)" > .env
docker compose up -d
ステップ 3 — Cursor にコネクタを追加
Cursor は ~/.cursor/mcp.json から MCP サーバを読み込みます。次のエントリを追加してください:
{
"mcpServers": {
"anythingmcp": {
"url": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- AnythingMCP の Profile → MCP API Keys → New Key で MCP API key を取得。
- ファイルを保存し Cursor を再起動。
- Cursor → Settings → MCP を開き、
Nextcloudが "Connected" として表示されることを確認。 - チャット開始 —
Nextcloudのすべてのツールが呼び出し可能になります。
利用可能なツール
| Tool | What it does |
|---|---|
nextcloud_get_capabilities | Read the server's capabilities: Nextcloud version, enabled apps and their feature flags |
nextcloud_get_user_status | Read the status of the account the app password belongs to: quota, used space, display name, e-mail, groups and last login |
nextcloud_list_users | List user ids on the instance, optionally filtered by a search fragment |
nextcloud_get_user | Read one user's details: display name, e-mail, quota, group memberships, last login and whether the account is enabled |
nextcloud_list_groups | List the groups defined on the instance, optionally filtered by a search fragment |
nextcloud_list_group_members | List the user ids in one group — who actually has access to whatever is shared with that group |
nextcloud_list_shares | List shares the account owns or received, with their type, recipient, permissions, expiry and public link URL |
nextcloud_get_share | Read one share by its id: exactly who it is shared with, at what permission level, and when it expires |
nextcloud_create_share | Create a share |
FAQ
Cursor の Free プランでカスタム MCP サーバは使えますか? はい — Hobby/Pro/Business で利用可能です。
次のステップ
このガイドは役に立ちましたか?