インストール不要。2分以内に動きます。
cloud.anythingmcp.com で無料トライアルを開始し、AFAS Profit をワンクリックで追加して、AI クライアント(Claude、ChatGPT、Copilot、Cursor)を生成された MCP エンドポイントに向けるだけ。Docker も git clone も、開発経験も不要です。
Summary
AFAS Profit — Dutch ERP and HR: read any published GetConnector, list what is available, and inspect a connector's metadata. Token auth with AFAS's base64-wrapped XML token.
こう聞いてみよう
AFAS Profit のサンプルプロンプト
プロンプトをクリックでコピー。Claude / ChatGPT / Cursor / Gemini / Copilot / OpenClaw に貼り付けて、このコネクターで実行できます。
Claude は AI のため誤ることがあります。回答をご確認ください。
💡 インストール不要? cloud.anythingmcp.com を直接利用してください。 サインインし、Connectors → AFAS Profit をクリック、認証情報を貼り付け、MCP API キーを発行 — 完了です。Docker も
git cloneもローカルサーバーも不要。
AFAS Profit + Cursor
AFAS Profit — Dutch ERP and HR: read any published GetConnector, list what is available, and inspect a connector's metadata. Token auth with AFAS's base64-wrapped XML token.
前提条件
完全なセットアップ手順はコネクタ自体に組み込まれています (ストアでコネクタを選択すると表示)。必要な環境変数:
AFAS_ENVIRONMENT, AFAS_TOKEN
ステップ 1 — 認証情報を取得
AFAS exposes nothing until somebody publishes a GetConnector. That is the whole model, and it is why this adapter takes the connector name as a parameter rather than hard-coding entity paths.
- In AFAS open Algemeen → Beheer → App connector and create an app connector for the integration.
- Add the GetConnectors the agent should reach (e.g.
Profit_Debiteuren,Profit_Facturen, or your ownCustom_…). A GetConnector that has not been added to the app connector does not exist as far as the API is concerned. - Generate the token. AFAS gives you an XML blob like
<token><version>1</version><data>ABC123…</data></token>. …
ステップ 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 を開き、
AFAS Profitが "Connected" として表示されることを確認。 - チャット開始 —
AFAS Profitのすべてのツールが呼び出し可能になります。
利用可能なツール
| Tool | What it does |
|---|---|
afas_profit_list_connectors | List the GetConnectors and UpdateConnectors published to this app connector |
afas_profit_get_connector_metadata | Read one GetConnector's field definitions: the field ids, their types and lengths |
afas_profit_get_data | Read rows from a GetConnector with AFAS's positional three-list filter |
afas_profit_get_debtors | Read the Profit_Debiteuren GetConnector — customers with their debtor number, name, address and credit data |
afas_profit_get_invoices | Read the Profit_Facturen GetConnector — invoices with their number, date, debtor and amounts |
afas_profit_get_employees | Read the Profit_Medewerkers GetConnector — employees with their number, name, department and employment data |
FAQ
Cursor の Free プランでカスタム MCP サーバは使えますか? はい — Hobby/Pro/Business で利用可能です。
次のステップ
このガイドは役に立ちましたか?