インストール不要。2分以内に動きます。
cloud.anythingmcp.com で無料トライアルを開始し、Sellsy をワンクリックで追加して、AI クライアント(Claude、ChatGPT、Copilot、Cursor)を生成された MCP エンドポイントに向けるだけ。Docker も git clone も、開発経験も不要です。
Summary
Sellsy — French CRM and invoicing: companies, contacts, opportunities, invoices, estimates, items and payments. REST API v2, OAuth 2.0 client credentials.
こう聞いてみよう
Sellsy のサンプルプロンプト
プロンプトをクリックでコピー。Claude / ChatGPT / Cursor / Gemini / Copilot / OpenClaw に貼り付けて、このコネクターで実行できます。
Claude は AI のため誤ることがあります。回答をご確認ください。
💡 インストール不要? cloud.anythingmcp.com を直接利用してください。 サインインし、Connectors → Sellsy をクリック、認証情報を貼り付け、MCP API キーを発行 — 完了です。Docker も
git cloneもローカルサーバーも不要。
Sellsy + Gemini
Sellsy — French CRM and invoicing: companies, contacts, opportunities, invoices, estimates, items and payments. REST API v2, OAuth 2.0 client credentials.
前提条件
完全なセットアップ手順はコネクタ自体に組み込まれています (ストアでコネクタを選択すると表示)。必要な環境変数:
SELLSY_CLIENT_ID, SELLSY_CLIENT_SECRET
ステップ 1 — 認証情報を取得
Getting credentials
- Sign in to Sellsy, open Paramètres → API and create an application in the developer area.
- Choose the client credentials flow — it authorises the application against your own account with no browser consent step. You receive a client id and client secret.
- Set
SELLSY_CLIENT_IDandSELLSY_CLIENT_SECRET. AnythingMCP mints and refreshes the access token on its own.
This is API v2, at https://api.sellsy.com/v2. Sellsy's v1 was an entirely different, single-endpoint RPC API — if you find an example that POSTs everything to one URL with a request parameter, that is v1 and it does not apply here.
…(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を実行 —Sellsyが利用可能として表示されます。 - Vertex AI Studio: 同じ Bearer ヘッダーで
https://cloud.anythingmcp.com/mcpをリクエストのtools配列に渡してください。
利用可能なツール
| Tool | What it does |
|---|---|
sellsy_list_companies | List client companies with their name, SIRET, VAT number, address and owner |
sellsy_search_companies | Search companies with Sellsy's filter object — far more expressive than the plain list |
sellsy_get_company | Read one client company in full: addresses, contacts, tax identifiers, rating and the notes recorded against it |
sellsy_list_contacts | List individual contacts with their name, e-mail, phone, position and the company they belong to |
sellsy_list_invoices | List invoices with their number, date, due date, client, net and gross totals and payment status — the receivables view |
sellsy_search_invoices | Search invoices with Sellsy's filter object — by status, date range, client or amount |
sellsy_get_invoice | Read one invoice in full: every row with its quantity, unit price, discount and VAT, the totals and the payments applied against it |
sellsy_list_estimates | List estimates (devis) with their number, date, client, total and acceptance status — what is out with prospects and not yet won |
sellsy_list_opportunities | List CRM opportunities with their name, client, amount, funnel step and expected close date — the pipeline view |
sellsy_list_items | List catalogue items with their reference, name, unit price, VAT rate and stock tracking flag |
FAQ
Gemini 1.5 Pro / 2.x は MCP をサポートしますか? はい — Gemini CLI ≥ 0.4 と Vertex AI tools API は Bearer ヘッダー付きの httpUrl MCP コネクタを受け入れます。
次のステップ
このガイドは役に立ちましたか?