Platoona MCP Server
OfficialAllows sending messages to Slack channels and interacting with Slack integration actions.
Click 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., "@Platoona MCP ServerSearch for tools to send a Slack message"
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.
Platoona MCP Server
An MCP (Model Context Protocol) server that connects AI assistants like Claude Code, Cursor, and others to 10,000+ SaaS integrations through Platoona Connect.
Features
search-tools - Semantic search (RAG) for 10K+ integration actions
list-integrations - Browse available integrations
list-connections - View your active connections
connect-app - Connect to integrations (OAuth or API key)
execute-tool - Execute integration actions
disconnect-app - Disconnect from integrations
Related MCP server: Integrations MCP
Prerequisites
A Platoona Connect account
Your Platoona API key (get it from Platoona Connect Portal)
Node.js 18+
Installation
Option 1: Install from npm (recommended)
npm install -g @platoona/mcpOption 2: Install from source
git clone https://github.com/platoona/platoona-mcp.git
cd platoona-mcp
npm install
npm run buildConfiguration
Environment Variables
Variable | Required | Description |
| Yes | Your Platoona Connect API key |
| No | Custom API URL (for self-hosted) |
Note: User ID is automatically derived from your API key using a deterministic hash. This ensures consistent identification across sessions - same API key always produces the same user ID (mcp_<hash>).
Usage with Claude Code
Add to your Claude Code configuration (~/.claude/claude_desktop_config.json):
{
"mcpServers": {
"platoona": {
"command": "npx",
"args": ["@platoona/mcp"],
"env": {
"PLATOONA_API_KEY": "platoona_xxx..."
}
}
}
}Or if installed globally:
{
"mcpServers": {
"platoona": {
"command": "platoona-mcp",
"env": {
"PLATOONA_API_KEY": "platoona_xxx..."
}
}
}
}Usage with Cursor
Add to your Cursor MCP settings:
{
"mcpServers": {
"platoona": {
"command": "npx",
"args": ["@platoona/mcp"],
"env": {
"PLATOONA_API_KEY": "platoona_xxx..."
}
}
}
}Available Tools
search-tools
Search for integration tools using semantic/RAG search.
Input:
- query: "send a message to slack"
- integrationFilter: "slack" (optional)
- limit: 10 (optional)
Output:
- List of matching tools with IDs, descriptions, and similarity scoreslist-integrations
List available integrations that can be connected.
Input:
- search: "email" (optional)
- limit: 20 (optional)
Output:
- List of integrations with IDs, names, and slugslist-connections
List all active connections for your MCP user.
Input: (none required)
Output:
- List of connections with IDs, status, and expirationconnect-app
Connect to an integration.
Input:
- integration: "slack" or UUID
- apiKey: "..." (for API key integrations)
- scopes: ["read", "write"] (for OAuth)
Output:
- For API key: connectionId and status
- For OAuth: authUrl to complete authorizationexecute-tool
Execute an integration action.
Input:
- action: "slack:send-message" or UUID
- parameters: { channel: "#general", text: "Hello!" }
- timeout: 30000 (optional)
Output:
- Execution result with output datadisconnect-app
Disconnect from an integration.
Input:
- integration: "slack" or UUID
Output:
- Success confirmationExample Workflow
Search for tools:
"Search for tools to send a Slack message"Check connections:
"List my Slack connections"Connect if needed:
"Connect to Slack" (will return OAuth URL)Execute the tool:
"Send a Slack message to #general saying Hello!"
API Endpoints Used
This MCP uses the dedicated /mcp/* endpoints for simplified integration:
Endpoint | Purpose |
| RAG search for integration tools |
| Connect to integration (OAuth or API key) |
| Execute an integration action |
| List active connections |
| Disconnect from integration |
| List available integrations |
Development
# Install dependencies
bun install
# Run in development mode
bun run dev
# Build for production
bun run build
# Start production server
bun startLicense
MIT
Support
This server cannot be installed
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/Platoona/platoona-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server