dooor-os-mcp
Exposes Dooor OS workspace capabilities to MCP-compatible AI clients, enabling natural language querying of data sources, app and deployment inspection, agent and database management, and governance trace reading.
README
Dooor OS MCP server
Model Context Protocol (MCP) server for the Dooor OS platform. Exposes the workspace's apps, deploys, git, databases, agents, monitoring and connected business data as MCP tools so an MCP client (Claude Code, Claude Desktop, etc.) can operate the platform on your behalf.
Every tool is scoped to a single workspace, resolved from the API key you
provide. All data_* and lake_* tools are read-only.
Two ways to connect
| Mode | Transport | Where the API key comes from |
|---|---|---|
| Local (default) | stdio | DOOOR_API_KEY environment variable |
| Remote (hosted) | Streamable HTTP | X-Api-Key: dor_sk_... header, per request |
You only need one. Most users run the local stdio server; the hosted server is for clients that prefer not to clone and build anything.
Local (stdio)
Clone, install, build:
git clone https://github.com/Dooor-AI/dooor-os-mcp.git
cd dooor-os-mcp
npm install
npm run build
Then register it with your MCP client, passing your workspace API key via the
DOOOR_API_KEY environment variable. Example MCP client config:
{
"mcpServers": {
"dooor-os": {
"command": "node",
"args": ["/absolute/path/to/dooor-os-mcp/dist/index.js"],
"env": {
"DOOOR_API_KEY": "dor_sk_your_key_here"
}
}
}
}
Optional env:
DOOOR_BASE_URL- override the API base URL (defaulthttps://os-develop.dooor.ai/api/v1).
Remote (hosted) server
Instead of cloning and building, you can point your MCP client at the hosted
Dooor OS MCP endpoint and pass your workspace API key in the X-Api-Key
header. The hosted server speaks the MCP Streamable HTTP transport in
stateless mode: it reads the key from each request, so your data stays scoped
to your own workspace even though one instance serves many clients.
The key travels in
X-Api-Key(notAuthorization) because the hosted endpoint runs behind a front end that reserves theAuthorizationheader for its own auth.Authorization: Bearer dor_sk_...is also accepted by the server itself, for setups that forward that header untouched.
Claude Code:
claude mcp add --transport http dooor-os https://mcp.dooor.ai/mcp \
--header "X-Api-Key: dor_sk_your_key_here"
Claude Desktop / .mcp.json (HTTP transport):
{
"mcpServers": {
"dooor-os": {
"type": "http",
"url": "https://mcp.dooor.ai/mcp",
"headers": {
"X-Api-Key": "dor_sk_your_key_here"
}
}
}
}
Replace dor_sk_your_key_here with your workspace API key. Requests without a
valid key are rejected with 401. No cloning, building or updating: you always
get the latest tools.
Running the HTTP server yourself
npm install
npm run build
npm run start:http
The server listens on 0.0.0.0:$PORT (default 8080):
POST /mcp- one JSON-RPC request per call; key read fromX-Api-Key(orAuthorization: Bearer).GET /healthz- returns200 {"status":"ok"}for health checks.
GET/DELETE /mcp return 405 because the server runs in stateless mode
(no long-lived session or server-initiated SSE stream). A Dockerfile is
included for container deploys (e.g. Cloud Run); it builds and runs
dist/http.js.
Development
npm run dev # tsc --watch
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.