# Camber - Remote Agentic Data Science MCP server

Remote data science agents for Snowflake, Databricks & BigQuery in Claude/Cursor via MCP

## Links
- Registry page: https://www.getdrio.com/mcp/com-cambercloud-camber-mcp-camber-mcp-server
- Website: https://docs.cambercloud.com/docs/camber-mcp

## Install
- Endpoint: https://camber-mcp.cambercloud.com/mcp
- Auth: Auth required by registry metadata

## Setup notes
- Remote header: Authorization (required; secret)
- The upstream registry signals required auth or secrets.
- Remote endpoint: https://camber-mcp.cambercloud.com/mcp
- Header: Authorization

## Tools
- usage_guide - Instructions for correctly using this MCP server.
        Call at the start of a session to learn tools, auth, CLI prerequisites, and stash file handling. Endpoint: https://camber-mcp.cambercloud.com/mcp
- agents_create - Create a Camber agent.

        Creates a personal agent by default. Pass `team_name` to create the agent
        for a team you belong to. Returns the created agent, including its `tag`. Endpoint: https://camber-mcp.cambercloud.com/mcp
- user_info - Get the authenticated Camber user and team names.

        Returns email, username, and teams list. Endpoint: https://camber-mcp.cambercloud.com/mcp
- agents_chat_start - Start a Camber agent chat. This is the tool to use for chatting with an agent.

        Agent runs can take minutes — longer than MCP tool timeouts allow (Claude Desktop
        cannot extend them). So this tool does NOT wait for the reply: it submits the
        message and returns immediately with a `conversation_id` and a clickable `chat_url`.
        The agent keeps working on the server after this returns.

        **You MUST follow up, the reply is NOT in this tool's result:**
        1. After calling this tool you MUST tell the user the work is in progress and share the `chat_url` so they can watch it live.
        2. Then immediately call the **`agents_chat_status`** tool with the returned `conversation_id`
           to get the agent's reply. That tool checks twice over 30 seconds, if the latest
           status is `running`, call it again. MUST NOT end your turn until
           `agents_chat_status` returns status `idle` (done) or `failed`.

        **One run per conversation:** continuing a `conversation_id` that is still `running`
        fails with a "still generating a response" error. Either wait and retry after
        `agents_chat_status` reports it finished, or call again with `stop=true` to interrupt
        the current run and send the new message. Endpoint: https://camber-mcp.cambercloud.com/mcp
- agents_chat_status - Check an async agent chat started with agents_chat_start, and return its reply when done.

        This checks the CLI twice over 30 seconds and returns its latest status response.
        Status values:
        - `running`: still working — call this tool again with the same conversation_id.
        - `idle`: finished — `content` holds the agent's reply.
        - `failed`: the run errored.

        Returns: AgentChatStatus with `status`, `content` (the reply once done), and
        `output_stash_files`. The run may reference **output files in Camber Stash**
        (`stash://...`). Those live in the cloud until copied locally:
        `camber stash cp stash://<user>/<path> ./<local>` (see `camber stash cp --help`),
        then confirm with the user where files were saved. Endpoint: https://camber-mcp.cambercloud.com/mcp
- agents_list - List Camber agents with optional scope and pagination.

        Returns: AgentListInfo object containing:
        - data: List of AgentInfo objects
        - page: PageInfo object with pagination details (page, size, total, num_page) Endpoint: https://camber-mcp.cambercloud.com/mcp

## Resources
- skill://context-mirror/SKILL.md - Create, update, pull, and push Camber Context Mirror agents from local coding workspaces. MIME type: text/markdown
- skill://context-mirror/_manifest - File listing for context-mirror MIME type: application/json
- skill://context-mirror/resources/claude-code-chat-export.md - File from context-mirror skill MIME type: text/markdown
- skill://context-mirror/resources/create-update.md - File from context-mirror skill MIME type: text/markdown
- skill://context-mirror/resources/cursor-chat-export.md - File from context-mirror skill MIME type: text/markdown
- skill://context-mirror/resources/layout.md - File from context-mirror skill MIME type: text/markdown
- skill://context-mirror/resources/pull-push.md - File from context-mirror skill MIME type: text/markdown
- skill://context-mirror/resources/troubleshooting.md - File from context-mirror skill MIME type: text/markdown

## Prompts
Not captured

## Metadata
- Owner: com.cambercloud.camber-mcp
- Version: 1.0.4
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: May 28, 2026
- Source: https://registry.modelcontextprotocol.io
