mcp

POST /v1/mcp/connections

Create an MCP connection (Connect AI tool).

সমস্ত mcp এন্ডপয়েন্ট

প্রমাণীকরণ

একটি বিয়ারার টোকেন হিসেবে একটি এপিআই কি পাঠান। কি-টির অবশ্যই mcp.manage অনুমতি থাকতে হবে; এটি ছাড়া কোনো কি ৪০৪ নয়, বরং ৪০৩ ত্রুটি দিয়ে প্রত্যাখ্যাত হবে।

যেখানে আপনার অর্গানাইজেশন আইডি দেওয়া হবে

এই এন্ডপয়েন্টটি JSON বডিতে একটি ক্ষেত্র হিসেবে org_id গ্রহণ করে।

আপনার ড্যাশবোর্ডের API কি স্ক্রিনে, কি-এর ঠিক পাশেই আপনার অর্গানাইজেশন আইডি রয়েছে। আপনি যে কলই করুন না কেন, সবগুলিতেই এই আইডি একই থাকে।

চেষ্টা করুন

কোণ বন্ধনীতে থাকা যেকোনো কিছু আপনার নিজস্ব মান দিয়ে এবং কী প্লেসহোল্ডারটি আপনার ড্যাশবোর্ডের একটি কী দিয়ে প্রতিস্থাপন করুন।

curl -X POST https://api.zinndigital.com/v1/mcp/connections \
  -H "Authorization: Bearer zdk_live_…" \
  -H "Content-Type: application/json" \
  -d '{ "name": <string>, "scopes": <string[]> }'

লগ ইন করা আছে? আপনার ড্যাশবোর্ডের এপিআই কনসোল আপনার আসল অর্গানাইজেশন আইডি এবং আপনার নিজের কি পূরণ করে দেয়, এবং লাইভ এপিআই-এর বিপরীতে অনুরোধটি চালায় যাতে আপনি প্রকৃত প্রতিক্রিয়া দেখতে পান। এই এন্ডপয়েন্টটি এপিআই কনসোলে খুলুন

বিবরণ

Mints a per-tool MCP connection and returns the full `zmcp_…` token **once** (only its hash is stored) plus a paste-ready client config snippet. The requested `scopes` must be permissions the caller already holds in the target org — an unheld scope is a `403` (a connection can never out-scope its creator), an unknown one a `422`. An optional spend cap bounds AI-triggered paid actions. Requires `mcp.manage`.

অনুরোধের বডি

নামধরনআবশ্যকএটি কী
namestringহ্যাঁ
clientMcpClientনাThe AI client a connection is for (informational).
scopesstring[]হ্যাঁRBAC permission keys to grant the token. Each must be a permission the caller holds in the target org (a connection can never out-scope its creator); an unheld scope is a `403`,…
sandboxbooleanনা
org_idUuid | nullনাThe org the connection belongs to. Defaults to the caller's sole managed org.
spend_cap_minorinteger | nullনাOptional per-window paid-action budget (integer minor units). Null = no cap.
spend_currencyCurrencyCodeনাISO 4217 currency code (money is minor units + this code — CLAUDE.md §2.8).
spend_window_secondsintegerনা

প্রতিক্রিয়া

নামধরনআবশ্যকএটি কী
idUuidহ্যাঁUUIDv7 identifier — sortable by creation time (docs/02 §8).
namestringহ্যাঁ
clientMcpClientহ্যাঁThe AI client a connection is for (informational).
prefixstringহ্যাঁThe token's public lookup prefix (not a secret).
scopesstring[]হ্যাঁThe RBAC permission keys this connection's token may exercise.
sandboxbooleanহ্যাঁ
spend_cap_minorinteger | nullনাOptional per-window budget (integer minor units, CLAUDE.md §2.8) for AI-triggered paid actions. Null = no cap.
spend_currencyCurrencyCodeনাISO 4217 currency code (money is minor units + this code — CLAUDE.md §2.8).
spend_window_secondsintegerহ্যাঁThe rolling window the spend cap applies over.
last_used_atstring | nullনা
revoked_atstring | nullনা
created_atstringহ্যাঁ
tokenstringহ্যাঁThe full `zmcp_…` token, shown exactly once.
endpointstringহ্যাঁThe MCP protocol endpoint URL to configure in the AI client.
configobjectহ্যাঁA paste-ready MCP client config snippet embedding the endpoint + token.

এই এন্ডপয়েন্ট থেকে যেসব ত্রুটি আসতে পারে

401 · 403 · 422 · 429