pumble-mcp
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@pumble-mcpsend a message to #general saying hello"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
pumble-mcp
A small MCP server that wraps Pumble's "API Key addon" REST API, exposing six
tools to Claude Code: send a message, list channel messages, edit a message,
list channels, send a direct message, and list workspace users. See SPEC.md
for the full design.
Security note: the Pumble API key you configure grants broad, workspace-wide access. Read the Security / Permissions section before installing.
1. Get a Pumble API key
In your Pumble workspace, install the API Key addon (Apps/Integrations).
Generate a key from the addon's settings. Pumble shows it once as an ephemeral message — copy it immediately.
Related MCP server: plutio-mcp
2. Configure the key
cp .env.example .env
# edit .env and set PUMBLE_API_KEY=<your key>.env is gitignored — never commit it. If you'd rather set it globally for
your shell (so any tool can use it without a .env file), add to
~/.bashrc:
export PUMBLE_API_KEY="<your key>"3. Install, build
npm install
npm run build4. Register with Claude Code
Register this as an MCP server using the absolute path to the built entry
point on your machine. Run this from the project root so $(pwd) resolves
correctly:
claude mcp add pumble --env PUMBLE_API_KEY="$PUMBLE_API_KEY" -- node "$(pwd)/dist/index.js"This writes an entry for pumble into Claude Code's MCP server config so
future sessions automatically have all six tools available, the same way
Slack's tools show up as mcp__plugin_slack_slack__*.
Verify it's registered:
claude mcp listDevelopment
npm run dev # watch mode
npm run typecheck # tsc --noEmit
npm test # vitestTools
Tool | Pumble endpoint | Notes |
|
|
|
|
|
|
|
|
|
|
| No input; returns every channel visible to the key, including DM ( |
|
|
|
|
| No input; returns every workspace member's |
Security / Permissions
This server hands a single static Pumble API key to an MCP server that Claude Code can call. Understand the blast radius before installing:
The API key inherits the full visibility and privileges of the Pumble user who generated it. It is a password-equivalent secret.
With these six tools, anyone able to invoke this server (including any Claude session configured with it) can, as you:
read, send, and edit messages in any channel the key can see;
send direct messages to any user (
pumble_send_dm);enumerate every workspace member's name and email (
pumble_list_users);read DM history —
pumble_list_channelsreturns DM channels (channelType DIRECT), whosechannelIdfeedspumble_list_messages.
There is no per-tool scoping and no read-only mode: one key means full read/write across channels, DMs, and the user directory.
Recommendations:
Never commit
.env(it is gitignored). Do not paste the key into logs, issues, or chat.If the key is ever exposed, rotate it: generate a new key in the API Key addon, update
.env, confirm it works, then revoke the old key.If your workspace allows it, generate the key from a dedicated, least-privilege service account rather than a full-admin user.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/infralayers/pumble-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server