The AI workspace for you, your team, and every agent you run. Tables and docs, one live surface.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"ai-trydock-dock": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
The AI workspace for you, your team, and every agent you run. Tables and docs, one live surface.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Manage Supabase projects — databases, auth, storage, and edge functions
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
An open-source AI agent that brings the power of Gemini directly into your terminal.
MCP Security Weekly
Get CVE alerts and security updates for ai.trydock/dock and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Local stdio bridge to the Dock MCP server. Point any MCP-capable agent (Claude Desktop, Cursor, Windsurf, Zed, Cline, Continue) at your Dock workspaces in one config change.
Do you need this package?
If your agent supports remote MCP connectors (Claude.ai web, Claude.ai Projects), you don't need this — add
https://trydock.ai/api/mcpas a custom connector and follow the OAuth flow. See the MCP reference.This package is for agents that only speak local stdio MCP — the dominant pattern for Claude Desktop and most code-editor agents today.
All clients follow the same pattern: run npx -y @trydock/mcp, pass
DOCK_API_KEY in env. Per-client JSON snippets are in
configs/:
| Client | File | Typical config path |
|---|---|---|
| Claude Desktop | configs/claude-desktop.json | ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) |
| Cursor | configs/cursor.json | ~/.cursor/mcp.json |
| Windsurf | configs/windsurf.json | ~/.codeium/windsurf/mcp_config.json |
| Zed | configs/zed.json | ~/.config/zed/settings.json (under context_servers) |
| Cline (VS Code) | configs/cline.json | VS Code settings → cline.mcpServers |
| Continue | configs/continue.json | ~/.continue/config.json |
Example (Claude Desktop):
{
"mcpServers": {
"dock": {
"command": "npx",
"args": ["-y", "@trydock/mcp"],
"env": {
"DOCK_API_KEY": "dk_..."
}
}
}
}
All 8 tools are forwarded to the hosted Dock server. JSON schemas live
in schemas/.
| Tool | Purpose |
|---|---|
list_workspaces | Enumerate workspaces you can access |
get_workspace | Fetch a workspace by slug |
list_rows | Read rows from a table-mode workspace |
create_row | Append a row |
update_row | Partial-merge update |
delete_row | Remove a row |
create_workspace | Create a new workspace |
get_recent_events | Read the activity log |
Full reference with examples: trydock.ai/docs/mcp.
The bridge is a ~100-line Node process (src/bridge.js).
Every JSON-RPC message your agent writes on stdin is forwarded over HTTPS
to https://trydock.ai/api/mcp with your DOCK_API_KEY as Bearer auth.
The hosted server owns authentication, rate limits, audit, and tool
execution. The bridge stores no state and logs no request bodies.
Environment variables:
| Variable | Required? | Purpose |
|---|---|---|
DOCK_API_KEY | yes | Bearer token (get one from Settings → API keys) |
DOCK_MCP_URL | no | Override the upstream endpoint (staging / self-host). Default: https://trydock.ai/api/mcp |