Developer Tools
famulor.io
Provides API access to manage Famulor AI assistants, phone numbers, and models.
ENDPOINT 1
https://mcp.famulor.io/mcp
MCP server metadata
- Name
- famulor-mcp
- Version
- 0.2.0
Famulor is an AI voice agent platform — operate the user's Famulor account on their behalf: phone assistants, outbound calls, campaigns, leads, knowledge bases, conversations, WhatsApp, SMS, and SIP trunks. When to use these tools: - ANY question about the user's calls, assistants, leads, campaigns, knowledge bases, phone numbers, conversations, WhatsApp activity or SMS history — call the matching tool, don't ask the user to paste data. - "my calls / last calls / calls today" → list_calls (filter client-side by date) or get_call. - "my assistants / agents / bots" → get_assistants or get_outbound_assistants. - "my leads / contacts" → list_leads. Add a lead → create_lead. - "my campaigns" → list_campaigns / get_campaign. Create call/WhatsApp/SMS → create_campaign. Start/stop → update_campaign_status. - "create / build / make a new assistant" → create_assistant (call get_voices, get_languages, get_models first to pick valid IDs). - "knowledge base / knowledgebase / docs" → list_knowledgebases / list_documents / create_knowledgebase. - "make a call / call this number" → make_call (requires assistant_id + phone_number in E.164). - "WhatsApp …" → get_whatsapp_senders, get_whatsapp_templates, send_whatsapp_template / send_whatsapp_freeform. - "SMS …" → send_sms (uses your purchased Famulor phone number). - "phone number / buy a number" → search_phone_numbers then purchase_phone_number. - "account info / balance / who am I" → get_me. Conventions: - IDs (assistant_id, campaign_id, knowledgebase_id, etc.) come from the matching list_* / get_* tool — fetch them first if the user names a resource in plain language. - Phone numbers MUST be E.164 (e.g. +491701234567). - For create_assistant / update_assistant, the user's variables key/values are FIXED at the assistant level — when later working with leads you can only supply values for those existing names, not add new ones. - For multimodal/dualplex assistants, knowledgebase_mode MUST be "function_call". If a tool returns an empty list, say so directly — don't say you "can't access" the data. The connection is live; an empty result means the account simply has no items of that kind yet.
Known tools 76
get_phone_numbersList phone numbers eligible to be attached to an assistant (filter by inbound/outbound).
Inferred read-onlyget_transcriber_providersList custom STT providers selectable on a pipeline assistant.
Inferred read-onlyenable_assistant_inbound_webhookEnable inbound-call webhook notifications for an assistant.
Inferred read-onlyenable_assistant_conversation_ended_webhookEnable conversation-ended (chat) webhook for an assistant.
Inferred read-onlydisable_assistant_conversation_ended_webhookDisable conversation-ended (chat) webhook.
Inferred read-onlylist_conversationsList conversations across your assistants with cursor pagination and filters.
Inferred read-onlycreate_conversationStart a new chat session with an assistant (widget=paid, test=free).
Inferred read-onlysend_messageSend a user message in an existing chat conversation and get the assistant reply.
Potential side effectsenable_conversation_aiRe-enable AI replies for a conversation after a human takeover.
Inferred read-onlydisable_conversation_aiDisable AI replies for a conversation so a human can take over.
Inferred read-onlylist_campaignsList all campaigns you own (call, WhatsApp, SMS), including channel, schedule windows, and fallback config.
Potential side effectssend_smsSend an SMS from one of your Famulor phone numbers (must be SMS-capable).
Potential side effectslist_mid_call_toolsList mid-call tools (HTTP integrations callable by an assistant during a call).
Inferred read-onlylist_all_phone_numbersList every phone number on the account (regardless of SMS or subscription status).
Potential side effectssearch_phone_numbersSearch for purchasable phone numbers via the Famulor provider.
Inferred read-onlypurchase_phone_numberPurchase a phone number returned by search_phone_numbers (monthly subscription).
Potential side effectsupdate_folderRename a folder or change its color (partial — only sent fields change).
Inferred read-onlyupdate_labelRename a label or change its color (partial — only sent fields change).
Inferred read-onlyget_whatsapp_templatesList approved templates for a WhatsApp sender (status defaults to "approved").
Inferred read-onlyget_whatsapp_session_statusCheck whether a 24h messaging window is open for a recipient.
Inferred read-onlysend_whatsapp_templateSend a WhatsApp template message (required when initiating or outside the 24h window).
Potential side effectsCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.famulor-mcp]
url = "https://mcp.famulor.io/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"famulor-mcp": {
"type": "http",
"url": "https://mcp.famulor.io/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: famulor-mcp
Remote MCP URL: https://mcp.famulor.io/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"famulor-mcp": {
"url": "https://mcp.famulor.io/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"famulor-mcp": {
"type": "http",
"url": "https://mcp.famulor.io/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "famulor-mcp",
"transport": "streamable-http",
"url": "https://mcp.famulor.io/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://app.famulor.io/mcp
Known tools 0
No tool metadata was available in the registry cache.
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.famulor-io]
url = "https://app.famulor.io/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"
Authentication is required. Replace the placeholder locally and never commit a secret.
Claude Code
.mcp.json
{
"mcpServers": {
"famulor-io": {
"type": "http",
"url": "https://app.famulor.io/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Claude Desktop
Settings → Connectors → Add custom connector
Name: famulor-io
Remote MCP URL: https://app.famulor.io/mcp
Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"famulor-io": {
"url": "https://app.famulor.io/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Visual Studio Code
.vscode/mcp.json
{
"servers": {
"famulor-io": {
"type": "http",
"url": "https://app.famulor.io/mcp",
"headers": {
"Authorization": "Bearer ${input:mcp-token}"
}
}
},
"inputs": [
{
"type": "promptString",
"id": "mcp-token",
"description": "famulor-io bearer token",
"password": true
}
]
}
Authentication is required. Replace the placeholder locally and never commit a secret.
Generic MCP
Client-specific MCP configuration
{
"name": "famulor-io",
"transport": "streamable-http",
"url": "https://app.famulor.io/mcp",
"headers": {
"Authorization": "Bearer YOUR_BEARER_TOKEN"
}
}
Authentication is required. Replace the placeholder locally and never commit a secret.
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for famulor.io was fetched 2026-08-28T08:38:45.496Z.
famulor.io is assessed as Trusted: Domain has an established technology history spanning over a year.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.