Tools
Import from getMCP Manifest
Round-trip a manifest produced by the export endpoint into a server.
POST
Counterpart to
POST /tools/export. Takes a manifest object (with the getmcp/tools-v1 envelope, or a bare tools[] array) and creates the listed tools on the target server in a single round-trip — no two-phase confirmation step.
Slug collisions default to skip (the existing tool is left alone and the candidate appears in
skipped[]). Pass on_conflict: "duplicate" to let ToolManager auto-suffix the new slug instead.Hard cap of 1000 tools per import. Larger manifests return
413 Payload Too Large — split the upload into multiple smaller manifests if you hit this.Path Parameters
The UUID of the server to import into (e.g.
836995ae-1cff-41ec-823e-a4f07ccca3a0). Numeric IDs are also accepted for backwards compatibility.Body Parameters
Manifest format identifier. Must start with
getmcp/tools-v (e.g. getmcp/tools-v1). Optional — bare arrays without an envelope are also accepted.Optional ISO 8601 timestamp from the source manifest. Carried through for traceability; not validated.
Optional
{ name, slug } block from the source server. Carried through for traceability; not used to override the target.Array of tool objects produced by the export endpoint. Each entry uses the same shape as the export manifest:
name, slug, description, endpoint_url, http_method, input_schema, parameter_mapping, response_mapping, headers, timeout, cache_ttl, retry_count, retry_backoff, rate_limit_per_min, status, tags, sort_order. The name field is required per row.How to handle slug collisions. One of:
skip (default — record goes into skipped[]), duplicate (auto-suffix the slug).Status Codes
| Code | Meaning |
|---|---|
200 | Import processed. Inspect created, skipped, and failed for per-tool outcomes. |
400 | Empty manifest or unsupported format. |
402 | 14-day trial expired and no active license. |
403 | Current license tier does not allow getMCP manifest import. |
404 | Server not found. |
413 | Manifest exceeds the 1000-tool per-import cap. |

