Bird MCP server. Read SMS, WhatsApp, email, contacts and audiences from your Bird workspace, plus safe CRM writes.
Add to your MCP config, then reload & authorize:
{
"mcpServers": {
"bird": {
"url": "https://bird.usefulapi.io/mcp"
}
}
}| Tool | Type | What it does |
|---|---|---|
bird_list_contacts | read | List contacts List contacts (CRM records) in the workspace, newest first, as a cursor page. |
bird_get_contact | read | Get contact Fetch a single contact by id. |
bird_list_contact_properties | read | List contact properties List the custom contact-property definitions (schema) for the workspace. |
bird_list_audiences | read | List audiences List audiences (contact lists) in the workspace, newest first, as a cursor page. |
bird_get_audience | read | Get audience Fetch a single audience by id. |
bird_list_audience_contacts | read | List audience contacts List the contacts that belong to a static audience, as a cursor page. |
bird_list_sms_messages | read | List sms messages List SMS messages (inbound + outbound) for the workspace, newest first. |
bird_get_sms_message | read | Get sms message Fetch a single SMS message by id. |
bird_list_sms_templates | read | List sms templates List the SMS templates available to the workspace (built-ins + your own). |
bird_list_whatsapp_messages | read | List whatsapp messages List WhatsApp messages (inbound + outbound) for the workspace, newest first. |
bird_get_whatsapp_message | read | Get whatsapp message Fetch a single WhatsApp message by id. |
bird_list_whatsapp_templates | read | List whatsapp templates List the WhatsApp message templates available to the workspace. |
bird_list_email_messages | read | List email messages List email messages sent from the workspace, newest first, as a cursor page. |
bird_get_email_message | read | Get email message Fetch a single email message by id. |
bird_create_contact | write | Create contact Create a contact (CRM record) — additive, sends no message. Contacts are unique by email. |
bird_create_audience | write | Create audience Create an audience (contact list) — additive, sends no message. Static audiences start empty. |
bird_usage_status | Usage status (free-tier meter) Report the caller's current free-tier usage this month: calls used, monthly limit, remaining, and whether the cap is reached. Read-only; does not count against the meter. | |
bird_upgrade | Upgrade to Pro (unlimited) Subscribe to the Pro plan for UNLIMITED Bird tool calls (the free tier caps monthly usage). Choose monthly ($9/month) or yearly ($90/year — 2 months free) billing. Returns a Stripe Checkout link to open in your browser; after payment your account upgrades automatically. Read-only; does not count against the meter. |
| Plan | Price | Limit |
|---|---|---|
| Free | $0 | 100 tool calls / month |
| Pro | $9/mo · $90/yr | Unlimited |
This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.