インストール不要。2分以内に動きます。
cloud.anythingmcp.com で無料トライアルを開始し、e-conomic をワンクリックで追加して、AI クライアント(Claude、ChatGPT、Copilot、Cursor)を生成された MCP エンドポイントに向けるだけ。Docker も git clone も、開発経験も不要です。
Summary
e-conomic — the Danish accounting standard (Visma group): customers, suppliers, booked and draft invoices, products, accounts and journals. REST API, authenticated with two separate tokens.
こう聞いてみよう
e-conomic のサンプルプロンプト
プロンプトをクリックでコピー。Claude / ChatGPT / Cursor / Gemini / Copilot / OpenClaw に貼り付けて、このコネクターで実行できます。
Claude は AI のため誤ることがあります。回答をご確認ください。
💡 インストール不要? cloud.anythingmcp.com を直接利用してください。 サインインし、Connectors → e-conomic をクリック、認証情報を貼り付け、MCP API キーを発行 — 完了です。Docker も
git cloneもローカルサーバーも不要。
e-conomic + Gemini
e-conomic — the Danish accounting standard (Visma group): customers, suppliers, booked and draft invoices, products, accounts and journals. REST API, authenticated with two separate tokens.
前提条件
完全なセットアップ手順はコネクタ自体に組み込まれています (ストアでコネクタを選択すると表示)。必要な環境変数:
ECONOMIC_APP_SECRET_TOKEN, ECONOMIC_AGREEMENT_GRANT_TOKEN
ステップ 1 — 認証情報を取得
e-conomic needs two tokens, and they come from different places.
- The App Secret Token identifies your application. You get it once, from e-conomic, when you register as a developer partner at
secure.e-conomic.com/secure/api1/requestaccess.aspx. It is the same for every customer you connect. - The Agreement Grant Token identifies the customer's agreement (their e-conomic company). The customer grants it by going through e-conomic's app-authorisation URL for your app; each customer produces a different one.
- Set
ECONOMIC_APP_SECRET_TOKENandECONOMIC_AGREEMENT_GRANT_TOKEN.
…(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を実行 —e-conomicが利用可能として表示されます。 - Vertex AI Studio: 同じ Bearer ヘッダーで
https://cloud.anythingmcp.com/mcpをリクエストのtools配列に渡してください。
利用可能なツール
| Tool | What it does |
|---|---|
e_conomic_get_self | Read the agreement this connector is bound to: the company name, its CVR number, the application name and the modules enabled |
e_conomic_list_customers | List customers with their number, name, CVR number, address, currency and payment terms |
e_conomic_get_customer | Read one customer by their customer number, with addresses, VAT zone, payment terms and the layout used for their invoices |
e_conomic_list_booked_invoices | List booked (posted, immutable) invoices with their number, date, due date, customer and totals |
e_conomic_get_booked_invoice | Read one booked invoice in full: every line with product, quantity, unit price and VAT, plus the totals and the remaining amount |
e_conomic_list_overdue_invoices | List booked invoices that are past their due date and still unpaid — the direct answer to 'who is late', without needing a filter |
e_conomic_list_draft_invoices | List unbooked invoice drafts |
e_conomic_list_suppliers | List suppliers with their number, name, CVR number, currency and payment terms, for the purchasing side of the ledger |
e_conomic_list_products | List products with their number, name, sales price, cost price, unit and the product group they belong to |
e_conomic_list_accounts | List the chart of accounts with each account's number, name, type, VAT account and current balance |
FAQ
Gemini 1.5 Pro / 2.x は MCP をサポートしますか? はい — Gemini CLI ≥ 0.4 と Vertex AI tools API は Bearer ヘッダー付きの httpUrl MCP コネクタを受け入れます。
次のステップ
このガイドは役に立ちましたか?