Conversational platform: chatbot flows, contact management, broadcasts, and analytics. Your agent orchestrates customer journeys across channels.
Take Blip gives your agent 18 tools it calls directly β pick the ones it needs, in Claude, Cursor, or any MCP client.
send_message β Send a message to a contact via Take Blipget_contacts β List contacts in Take Blipcreate_contact β Create a contact in Take Blip// Your agent calls a tool directly β no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("send_message", { /* ... */ });$ npm install @codespar/mcp-take-blipAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"mcpServers": {
"take-blip": {
"command": "npx",
"args": [
"-y",
"@codespar/mcp-take-blip"
],
"env": {
"TAKE_BLIP_API_KEY": "<your_take_blip_api_key>"
}
}
}
}After restart, your agent can call any of the 18 tools below β try send_message first.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
TAKE_BLIP_API_KEYAPI key for take-blip
Each tool is independent β your agent loads only what it needs to reduce context and response time.
send_messageget_contactscreate_contactget_threadssend_notificationget_analyticscreate_broadcastget_chatbot_flowMCP is a protocol β any framework that speaks it can mount this server.