← trydock.ai

INDIVIDUAL MCP TOOL

create_workspace

Create a new workspace in the caller's org.

trydock.ainone authenticationAvailability not checked

Input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description contains a write-action term.

Parent endpoint

trydock.ai

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.dock]
url = "https://trydock.ai/api/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "dock": {
      "type": "http",
      "url": "https://trydock.ai/api/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: dock
Remote MCP URL: https://trydock.ai/api/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "dock": {
      "url": "https://trydock.ai/api/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "dock": {
      "type": "http",
      "url": "https://trydock.ai/api/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "dock",
  "transport": "streamable-http",
  "url": "https://trydock.ai/api/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • list_workspaces — List all workspaces the authenticated principal has access to.
  • get_workspace — Get details about a specific workspace by its slug, including columns of its primary table surface, member count, and row count.
  • list_rows — List rows in a workspace's table surface.
  • create_row — Append a new row to a workspace's table surface.
  • get_row — Fetch a single row by id without listing the full table.
  • update_row — Update specific fields of an existing row.
  • delete_row — Permanently delete a row from a workspace.
  • move_rows — Atomically move N rows from their current sheet(s) to a target sheet inside the same workspace.