Skip to main content
Glama
kiriminow
by kiriminow

kirimi-mcp

MCP server for Kirimi WhatsApp API. Exposes Kirimi API tools to AI agents via the Model Context Protocol.

Tools

Tool

Description

send_message

Send a WhatsApp message to a single recipient

broadcast_message

Broadcast to multiple recipients (max 1000)

list_devices

List all connected WhatsApp devices

device_status

Get status of a specific device

save_contact

Save a single contact

save_contacts_bulk

Bulk import contacts (max 1000)

get_user_info

Get account info, saldo, and stats

Related MCP server: WAHA MCP

Setup

  1. Get an API key from dash.kirimi.id/settings?tab=api

  2. Find your device ID in the Kirimi dashboard

With Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "kirimi": {
      "command": "npx",
      "args": ["-y", "kirimi-mcp"],
      "env": {
        "KIRIMI_API_KEY": "your_api_key_here",
        "KIRIMI_DEVICE_ID": "D-XXXXX"
      }
    }
  }
}

With Claude Code

claude mcp add kirimi npx kirimi-mcp \
  -e KIRIMI_API_KEY=your_api_key_here \
  -e KIRIMI_DEVICE_ID=D-XXXXX

Environment Variables

Variable

Required

Description

KIRIMI_API_KEY

API key from Kirimi dashboard

KIRIMI_DEVICE_ID

Default device ID for sending messages

KIRIMI_API_BASE_URL

Override API base URL (default: https://api.kirimi.id)

Development

bun install
bun run dev

License

MIT

Available Tools

7 tools
broadcast_messageA

Send a WhatsApp message to multiple recipients at once. Max 1000 numbers per call. Delay between sends is enforced automatically (min 30s).

ParametersJSON Schema
NameRequiredDescriptionDefault
delayNoFixed delay in seconds between sends (default 30, min 30)
labelYesBroadcast label/name (max 100 chars)
messageNoText message to broadcast
numbersYesArray of recipient phone numbers
delay_maxNoMaximum delay in seconds for random delay range
delay_minNoMinimum delay in seconds for random delay range
media_urlNoOptional media URL to attach to every message

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden. It discloses that delay is enforced automatically with a 30s minimum, which is a behavioral trait. However, it does not mention error handling, idempotency, or whether messages are queued or sent synchronously.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no unnecessary words. It front-loads the core purpose and then adds constraints, achieving high density of useful information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 7 parameters and no output schema, the description is too brief. It fails to explain the relationship between delay, delay_min, delay_max (fixed vs random range), and does not describe label or media_url parameters. The return value or error behavior is also not mentioned.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, baseline 3. The description adds value by specifying the maximum numbers constraint (not in schema) and clarifying that delay is enforced with a minimum of 30s, which complements the delay parameter's description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it sends a WhatsApp message to multiple recipients, distinguishing it from sibling send_message which likely targets a single recipient. It also specifies the limit of 1000 numbers per call.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides key usage constraints: max 1000 numbers and minimum 30s delay between sends. It implicitly guides the agent to use this tool for bulk messaging versus send_message for single messages, but lacks explicit when-not-to-use or alternative guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

device_statusB

Get detailed status of a specific WhatsApp device.

ParametersJSON Schema
NameRequiredDescriptionDefault
device_idNoDevice ID (e.g. D-XXXXX). Defaults to KIRIMI_DEVICE_ID env var if not provided.

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It only says 'Get detailed status', leaving the agent guessing about what fields are returned, possible side effects (none likely but unstated), permissions needed, or rate limits. Minimal disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence that is front-loaded and to the point. No extraneous information, every word carries meaning.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read tool with no output schema and no annotations, the description does not fully explain what 'detailed status' entails. Missing return format or examples, making it insufficient for a complete understanding.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% and already includes a description with default value fallback. The tool description adds no new information about the parameter beyond what the schema provides, so baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Get detailed status of a specific WhatsApp device', using a specific verb and resource. It distinguishes itself from sibling 'list_devices' by focusing on a single device.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when one needs status of a specific device, but does not explicitly state when to use this tool versus alternatives like 'list_devices' or other tools. No exclusions or nuances provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_user_infoA

Get current Kirimi account info: name, saldo, AI quota, device counts, and message stats.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the full burden. It implies a read-only operation by 'Get', but does not explicitly state safety, auth needs, or rate limits. The behavior is straightforward given zero parameters, but lacks explicit disclosure beyond the obvious.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single sentence that is efficient and front-loaded, conveying all necessary information without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simplicity (no parameters, no output schema), the description completely covers what the tool does by listing the specific fields returned. No additional context is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are no parameters, so the description adds value by detailing the returned fields. According to the rubric, 0 parameters yields a baseline of 4, and the description meets that benchmark by specifying what info is retrieved.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get' and the resource 'current Kirimi account info', and lists specific fields (name, saldo, AI quota, device counts, message stats). This differentiates it from sibling tools like send_message or list_devices.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for retrieving account overview but does not explicitly state when to use this tool versus siblings like device_status or list_devices. No exclusions or alternative suggestions are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_devicesA

List all WhatsApp devices connected to this Kirimi account with their status.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden; it states listing devices with status, implying read-only, but doesn't disclose other behavioral traits like response format or pagination (if any).

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence, front-loaded with verb and resource, no extraneous text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, no parameters, and no annotations, the description provides all necessary information: what the tool does and what it returns (list with status).

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters exists, so baseline score of 4 applies. Description does not need to add param info.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states verb 'List' and resource 'WhatsApp devices' with detail about status, distinguishing it from siblings like device_status which likely checks a single device.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides context of listing devices for the account, but no explicit guidance on when to use vs alternatives or when not to use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

save_contactB

Save a single contact to the Kirimi contact list.

ParametersJSON Schema
NameRequiredDescriptionDefault
namaYesContact name
nomorYesContact phone number
device_idNoOptional device ID to associate this contact with

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description provides no behavioral details beyond mutation. It lacks information on idempotency, conflict handling, overwrite behavior, or authorization requirements.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence that directly states the tool's purpose with no wasted words. It is appropriately sized for a simple tool but could include more context.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the basic purpose but lacks usage guidelines and behavioral transparency. For a tool with no output schema and simple parameters, it is adequate but not complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all parameters. The description adds no additional meaning or context beyond what is in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Save'), the resource ('contact'), and the specific scope ('a single contact to the Kirimi contact list'), distinguishing it from the sibling 'save_contacts_bulk' tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given on when to use this tool versus alternatives such as 'save_contacts_bulk' or other sibling tools, or any prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

save_contacts_bulkA

Import multiple contacts at once (max 1000). Duplicates are skipped.

ParametersJSON Schema
NameRequiredDescriptionDefault
contactsYesArray of contact objects
device_idNoOptional device ID to associate all contacts with

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Without annotations, the description discloses key behaviors: a maximum batch size of 1000 and duplicate skipping. It could add more detail on idempotency or side effects but is good for what it provides.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no waste, front-loaded with the main purpose. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description lacks information on return values, error handling, and confirmation of success. For a bulk import tool, this is a noticeable gap despite moderate complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% coverage with descriptions for both contacts and device_id. The description adds no additional meaning beyond the schema, meeting the baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it imports multiple contacts at once with a max of 1000 and duplicate handling, distinguishing it from the sibling save_contact which handles single contacts.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies batch usage but does not explicitly state when to use versus alternatives like save_contact for single contacts, nor does it provide exclusions or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

send_messageB

Send a WhatsApp message to a single recipient. Supports text, media URL, and quoted replies.

ParametersJSON Schema
NameRequiredDescriptionDefault
messageNoText message to send
receiverYesRecipient phone number (e.g. 628123456789) or group JID
media_urlNoOptional public URL of image/video/document to attach
quoted_message_idNoOptional message ID to quote/reply to

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description should fully disclose behavior. Mentions supported content types but omits crucial details like whether it sends immediately, requires opt-in, returns message ID, or handles errors.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, no wasted words. Could be slightly more structured, but efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema, so description should hint at return value. Missing behavioral context like success indicators or error states. Parameter info is good but overall incomplete for a mutation tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers all 4 parameters with descriptions. Description adds minimal value beyond schema (e.g., 'supports text, media URL, quoted replies'), but 100% coverage means baseline is 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states verb 'Send', resource 'WhatsApp message', and scope 'single recipient'. Distinguishes from sibling broadcast_message by specifying single recipient.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implies usage for one-to-one messaging vs broadcast, but no explicit when-to-use, prerequisites, or alternatives. Lacks guidance on not using for multiple recipients.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 7 tool updatesv1.0.0
    • First observedbroadcast_message
    • First observeddevice_status
    • First observedget_user_info
    • First observedlist_devices
    • First observedsave_contact
    • First observedsave_contacts_bulk
    • First observedsend_message

TDQS

A3.9/5.0
Disambiguation5/5

Every tool serves a distinct purpose: broadcast vs. single message, device list vs. status, single vs. bulk contact saving, and account info. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case (e.g., broadcast_message, list_devices, save_contact). The mix of imperative and get_/list_ prefixes is uniform.

Tool Count5/5

Seven tools is well-scoped for a WhatsApp messaging server, covering sending, broadcasting, contacts, devices, and account info without bloat or deficiency.

Completeness4/5

Core operations are covered, but notable gaps exist: no tool for reading incoming messages, checking message status, or updating/deleting contacts. However, the domain focus is on sending and management, so minor.

Maintenance

ActivityStale
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    An MCP (Multi-Agent Conversation Protocol) Server that enables interaction with the WhatsApp Business API, allowing agents to send messages, manage media, and perform other WhatsApp business operations through natural language.
    1
    -
  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    A self-hosted MCP server that connects AI clients to WhatsApp via the WAHA HTTP API. It enables users to manage sessions, search contacts, and send or receive messages and media directly through natural language interfaces.
    23
    -
  • A
    license
    Not graded
    quality
    F
    maintenance
    MCP server for interacting with the official Meta WhatsApp Business Platform/Cloud API, enabling sending messages, managing contacts, templates, and handling webhook callbacks.
    Apache 2.0

Latest Blog Posts

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/kiriminow/kirimi-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server