Skip to main content
TA

Take Blip

v0.2.1API Key

Conversational platform: chatbot flows, contact management, broadcasts, and analytics. Your agent orchestrates customer journeys across channels.

18 tools1 env vars🇧🇷 Brazilstable on npm

What your agent can do

Take Blip gives your agent 18 tools it calls directly — pick the ones it needs, in Claude, Cursor, or any MCP client.

  • send_messageSend a message to a contact via Take Blip
  • get_contactsList contacts in Take Blip
  • create_contactCreate a contact in Take Blip
Example call
// 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", { /* ... */ });

Install

terminal
$ npm install @codespar/mcp-take-blip

Quickstart

Add this entry to your claude_desktop_config.json (or any MCP-compatible client config).

claude_desktop_config.json
{
  "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.

Environment variables · 1

Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.

TAKE_BLIP_API_KEY
requiredsecret

API key for take-blip

Available tools · 18

Each tool is independent — your agent loads only what it needs to reduce context and response time.

WRITEsend_message
Send a message to a contact via Take Blip
READget_contacts
List contacts in Take Blip
WRITEcreate_contact
Create a contact in Take Blip
READget_threads
Get message threads (recent conversations)
WRITEsend_notification
Send a notification message to a contact
READget_analytics
Get chatbot analytics and metrics
WRITEcreate_broadcast
Create a broadcast distribution list and send messages
READget_chatbot_flow
Get chatbot flow/builder configuration

Compatible frameworks

MCP is a protocol — any framework that speaks it can mount this server.

Claude Agent SDKAnthropic
OpenAI AgentsOpenAI
Vercel AI SDKVercel
LangChainLangChain
LlamaIndexLlamaIndex
CrewAICrewAI
MastraMastra
Any MCP clientProtocol

Frequently asked questions

Run `npx -y @codespar/mcp-take-blip` and add the config block above to your MCP client — Claude, Cursor, VS Code, or any MCP-compatible client. No build step, no SDK required. Prefer hosted? CodeSpar's managed tier runs it for you with auth handled.
Take Blip — MCP server · 18 tools | CodeSpar