Create MCP Server From an API Spec
create_serverTurn an OpenAPI spec into a DRAFT MCP server, and report the tools it found.
Give it a public URL to an OpenAPI 3 document. Bridge fetches it, generates one typed tool per operation, and stores them UNEXPOSED. Nothing becomes callable until a human reviews the tools and publishes in the console — this tool cannot publish, and that is deliberate: exposing a tool makes somebody's API reachable, which is not a decision to automate.
Returns the server id, the proposed tools with their HTTP methods, and a console link to finish. Use when someone wants to give an agent access to an API they have a spec for.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | A name for the server. Defaults to the title in the spec. | |
| source_url | Yes | Public HTTPS URL of an OpenAPI 3 document, e.g. "https://api.example.com/openapi.json". Must be reachable without credentials. |