インストール不要。2分以内に動きます。
cloud.anythingmcp.com で無料トライアルを開始し、ELO Digital Office をワンクリックで追加して、AI クライアント(Claude、ChatGPT、Copilot、Cursor)を生成された MCP エンドポイントに向けるだけ。Docker も git clone も、開発経験も不要です。
Summary
ELO ECM: search the archive, read Sord metadata and keywording, walk the folder tree and list document versions. ELO IX REST interface, ticket-based session auth against your own ELO server.
こう聞いてみよう
ELO Digital Office のサンプルプロンプト
プロンプトをクリックでコピー。Claude / ChatGPT / Cursor / Gemini / Copilot / OpenClaw に貼り付けて、このコネクターで実行できます。
Claude は AI のため誤ることがあります。回答をご確認ください。
💡 インストール不要? cloud.anythingmcp.com を直接利用してください。 サインインし、Connectors → ELO Digital Office をクリック、認証情報を貼り付け、MCP API キーを発行 — 完了です。Docker も
git cloneもローカルサーバーも不要。
ELO Digital Office + Gemini
ELO ECM: search the archive, read Sord metadata and keywording, walk the folder tree and list document versions. ELO IX REST interface, ticket-based session auth against your own ELO server.
前提条件
完全なセットアップ手順はコネクタ自体に組み込まれています (ストアでコネクタを選択すると表示)。必要な環境変数:
ELO_URL, ELO_USERNAME, ELO_PASSWORD
ステップ 1 — 認証情報を取得
Setup
- Confirm the ELO Indexserver (IX) publishes its REST interface — typically
https://<server>/ix-<repo>/rest. The repository name is part of the path, so an installation with several archives needs one connector each. - Create an ELO user for the integration with read rights on the archive areas the agent should see. ELO enforces ACLs per Sord, so a restricted user sees a smaller archive rather than an error.
- Set
ELO_URLto the IX REST root (no trailing slash), plusELO_USERNAMEandELO_PASSWORD.
…(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 — Gemini にコネクタを追加
Gemini CLI は ~/.gemini/settings.json (Windows は %APPDATA%\gemini\settings.json) から MCP サーバを読み込みます。追加:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- AnythingMCP の Profile → MCP API Keys → New Key で MCP API key を取得。
- ファイルを保存し
geminiを再起動。 - Gemini CLI で
/mcpを実行 —ELO Digital Officeが利用可能として表示されます。 - Vertex AI Studio: 同じ Bearer ヘッダーで
https://cloud.anythingmcp.com/mcpをリクエストのtools配列に渡してください。
利用可能なツール
| Tool | What it does |
|---|---|
elo_get_session_info | Read the current ELO session: the logged-in user, their groups and the repository this connector is bound to |
elo_find_first | Run an archive search and return the first page of hits plus a searchId |
elo_find_next | Fetch the next page of an open ELO search using the searchId returned by elo_find_first |
elo_get_sord | Read one Sord — folder or document — by objId, with its name, type, dates, owner and full keywording field values |
elo_list_children | List the children of a folder Sord — how you walk the ELO archive tree from a known folder downwards |
elo_get_document_versions | Read the version history of one document Sord: who checked in each version, when, and with what comment |
elo_list_keywording_forms | List the keywording forms (Verschlagwortungsmasken) defined in this repository, with their index field groups |
FAQ
Gemini 1.5 Pro / 2.x は MCP をサポートしますか? はい — Gemini CLI ≥ 0.4 と Vertex AI tools API は Bearer ヘッダー付きの httpUrl MCP コネクタを受け入れます。
次のステップ
このガイドは役に立ちましたか?