Datatape
Getting Started

Get your MCP URL

Find your organization's MCP endpoint and connect AI clients to your tools.

Get your MCP URL

Datatape exposes your tools through an org-level MCP endpoint. All agents and tools in your organization are accessible through a single URL.

Your MCP endpoint

Every organization gets a single MCP endpoint:

https://your-org-id.mcp.datatape.ai/mcp

Click Connect in the top-right of the dashboard to open the Connect panel, which shows your endpoint URL, a Claude Desktop config snippet, and your available tools.

Connect side panel showing the org's MCP endpoint URL and Claude Desktop config snippet

User endpoint

For personal access across all your organizations, Datatape provides a user-level endpoint:

https://my.mcp.datatape.ai/mcp

This endpoint authenticates via OAuth and gives you access to the tools assigned to you — either directly or through toolsets and group memberships.

Connect AI clients

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "datatape": {
      "url": "https://your-org-id.mcp.datatape.ai/mcp"
    }
  }
}

Restart Claude Desktop. Your tools will appear in Claude's tool list.

Claude Desktop showing Datatape tools

Claude Code

claude mcp add datatape https://your-org-id.mcp.datatape.ai/mcp

Cursor

  1. Open Settings > MCP Servers
  2. Click Add Server
  3. Paste your MCP endpoint URL
  4. Save

Cursor MCP server settings

ChatGPT

ChatGPT supports MCP via the desktop app. Add Datatape as an MCP server in ChatGPT's settings.

Any MCP client

Datatape implements the standard MCP protocol. Any client that supports Streamable HTTP transport can connect using the endpoint URL.

Authentication

Interactive clients (Claude Desktop, Cursor) use OAuth for authentication. When a client connects, it opens a browser for login.

For programmatic access (CI/CD, scripts, automation), create an agent to get an API key:

curl https://your-org-id.mcp.datatape.ai/mcp \
  -H "Authorization: Bearer dt_your_agent_api_key_here"

HTTP API

Your organization also has a separate HTTP API endpoint for REST-style access:

https://your-org-id.http.datatape.ai

This lets you call tools via standard HTTP requests without needing an MCP client.

What's next?

On this page