mcp server
@dock0/openai-docs
Search and read OpenAI developer docs from your editor using MCP. What it provides: - Read-only access to OpenAI developer documentation (search + page content). - A way to pull documentation into your agent’s context while you work.
Connect
Create a key, paste the endpoint into your MCP client, then run a quick probe to confirm the connection works end-to-end.
https://dock0.mcp.dock0.dev/openai-docs/mcphttps://dock0.mcp.dock0.dev/openai-docs/mcpcurl -sS \
-H 'Authorization: Bearer <YOUR_MCP_KEY>' \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":"1","method":"tools/list","params":{}}' \
https://dock0.mcp.dock0.dev/openai-docs/mcpBefore you start
This server is currently free to use.
You can still create a key and connect it the same way as any paid server.
Step 1: sign in. Step 2: create a key. Step 3: paste the generated client config into Claude, Cursor, or Claude Code.
Dock0 generates a buyer-scoped key and a ready-to-paste client guide after sign-in.
Sign in to create keypricing
Free
Free to use
total calls
0
Lifetime traffic
success rate
100.0%
0 non-success calls
p95 latency
0ms
Lifetime p95
stars
0
Community saves
5 tools • 0 prompts • 0 resources
Refreshed 4/12/2026, 3:31:33 PM
search_openai_docs
Search across `platform.openai.com` + `developers.openai.com` docs. Use this whenever you are working with the OpenAI API (including the Responses API), OpenAI API SDKs, ChatGPT Apps SDK, or ChatGPT Codex. Results include URLs—**after `search`, use `fetch_openai_doc`** to read/quote the exact markdown.
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"query"
],
"properties": {
"limit": {
"type": "integer",
"maximum": 50,
"minimum": 1
},
"query": {
"type": "string",
"minLength": 1
},
"cursor": {
"type": "string"
}
},
"additionalProperties": false
}list_openai_docs
List/browse pages from `platform.openai.com` + `developers.openai.com` that this server crawls (useful when you don’t know the right query yet or you’re paging through results). Search across `platform.openai.com` + `developers.openai.com` docs. Use this whenever you are working with the OpenAI API (including the Responses API), OpenAI API SDKs, ChatGPT Apps SDK, or ChatGPT Codex. Results include URLs—**after `list`, use `fetch_openai_doc`** on a result URL to get the full markdown.
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"limit": {
"type": "integer",
"maximum": 50,
"minimum": 1
},
"cursor": {
"type": "string"
}
},
"additionalProperties": false
}fetch_openai_doc
Fetch the markdown for a specific doc page (from `developers.openai.com` or `platform.openai.com`) so you can quote/summarize exact, up-to-date guidance (schemas, examples, limits, edge cases). Prefer to **`search_openai_docs` first** (or `list_openai_docs` if you’re browsing) to find the best URL, then `fetch_openai_doc` to pull the exact text; you can pass `anchor` (e.g. `#streaming`) to fetch just that section.
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"minLength": 1
},
"anchor": {
"type": "string"
}
},
"additionalProperties": false
}list_api_endpoints
List all OpenAI API endpoint URLs available in the OpenAPI spec.
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {}
}get_openapi_spec
Return the OpenAPI spec for a specific API endpoint URL. Optionally filter code samples by language, or return only code samples.
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"minLength": 1
},
"languages": {
"type": "array",
"items": {
"type": "string",
"minLength": 1
}
},
"codeExamplesOnly": {
"type": "boolean"
}
},
"additionalProperties": false
}No prompts published.
No resources published.