# Pumble — how to use (mcp.ai)

Connect your Pumble account and use 9 tools for team chat straight from your AI agent. Connect with your own API key. Pumble is a team communication platform for channels, direct messages, scheduled messages, and workspace collaboration.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_pumble?ms=1787293440000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `pumble_delete_message`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/pumble`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/pumble/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/pumble/delete/message` — Permanently delete one Pumble message identified by channel ID and message ID.
  - body: { channel_id: string, message_id: string }
- `POST https://api.mcp.ai/api/pumble/edit/message` — Replace the text of an existing Pumble message in a channel.
  - body: { text: string, channel_id: string, message_id: string }
- `POST https://api.mcp.ai/api/pumble/get/current/user` — Return the Pumble user and workspace associated with the connected API key. Use this to identify the connected account or verify its credentials.
- `POST https://api.mcp.ai/api/pumble/get/message` — Fetch one Pumble message by its message ID and channel ID.
  - body: { channel_id: string, message_id: string }
- `POST https://api.mcp.ai/api/pumble/list/channel/messages` — Return one page of recent messages from a channel, continuing backward through history with a cursor.
  - body: { limit?: integer, cursor?: string, channel_id: string }
- `POST https://api.mcp.ai/api/pumble/list/channels` — List channels visible to the connected Pumble user, including channel IDs needed by message tools.
- `POST https://api.mcp.ai/api/pumble/list/users` — List users in the current Pumble workspace with stable IDs and profile details.
- `POST https://api.mcp.ai/api/pumble/search/messages` — Search Pumble messages and return one bounded page. For the first page, provide at least one of text, author_ids, or channel_ids; for later pages, pass the returned cursor alone.
  - body: { text?: string, limit?: integer, cursor?: string, author_ids?: string[], channel_ids?: string[] }
- `POST https://api.mcp.ai/api/pumble/send/message` — Immediately post a text message to a Pumble channel identified by its channel ID.
  - body: { text: string, as_bot?: boolean, channel_id: string }

## Example prompts
- "What can I do in Pumble?"
- "Show me a summary of my Pumble account"

## More
- Page: https://mcp.ai/pumble
- Agent spec (llms.txt): https://mcp.ai/pumble/llms.txt
- Postman collection: https://mcp.ai/pumble/postman.json
