Famulor
Use Famulor through the hosted Streamable HTTP MCP server:
https://app.famulor.io/mcp
This skills-only package does not install or configure the MCP connection. Add the endpoint as a remote Streamable HTTP server in the user's MCP client, then let that client run its OAuth flow. A workspace API key can also authenticate trusted server-to-server clients, but never ask a user to paste a key into chat or place one in files, commands, logs, or source control.
If the Famulor MCP server is unavailable in the current client, help the user connect it and stop before claiming to have read or changed their account. Do not substitute an undocumented REST endpoint.
When to Use
- Use when a request needs real Famulor workspace data or an authenticated Famulor action.
- Use when configuring or operating assistants, communication history, campaigns, knowledge, automations, telephony, billing, or workspace settings.
- Do not use for generic voice-agent advice that does not require Famulor.
Limitations
- Static tool tables are a dated routing snapshot; the authenticated server's live
tools/list schema is authoritative.
- Available tools, fields, scopes, plan features, prices, limits, and provider behavior can differ by workspace and change over time.
- This skill cannot grant missing consent, roles, scopes, plan entitlements, provider approvals, or regulatory authorization.
- External calls, messages, purchases, migrations, and integrations may have costs or effects outside Famulor; verify their returned status instead of assuming completion or rollback.
Route to the smallest toolset
Use only the group or groups needed for the request. A narrower URL keeps discovery and model context manageable:
https://app.famulor.io/mcp?toolsets=assistants,calls
Read the linked reference only for the relevant group. Each reference contains every tool currently assigned to that group; the live tools/list schema remains authoritative.
| Toolset |
Use for |
Current tools |
Reference |
assistants |
Assistants, versions, models, voices, reusable tools, bookings, tests, and integrations |
56 |
assistants |
calls |
Calls, unified history, transcripts, QA, callbacks, and live control |
15 |
calls |
campaigns |
Campaigns, Audience contacts, leads, segments, consent, suppression, and outbound limits |
34 |
campaigns |
messaging |
WhatsApp, Messenger, email, Slack, connectors, templates, and sender profiles |
44 |
messaging |
telephony |
Phone numbers, SIP trunks, caller IDs, carriers, and number verification |
27 |
telephony |
knowledge |
Knowledge bases, documents, FAQs, websites, and connected drives |
20 |
knowledge |
dashboards |
Dashboards, analytics, widgets, and layout |
19 |
dashboards |
automations |
Automations, connections, CRM sync, routines, and runs |
28 |
automations |
billing |
Balance, usage, transactions, invoices, billing recovery, and referrals |
7 |
billing |
settings |
Account, workspaces, API keys, retention, memory, domains, and sessions |
20 |
settings |
platform |
Authorized white-label reseller customer administration |
6 |
platform |
migration |
Previewing and importing supported Famulor 1.0 resources |
2 |
migration |
tasks |
Durable exports, simulations, crawls, and campaign preparation |
4 |
tasks |
The full snapshot contains 282 tools. list_mcp_toolsets can report the groups visible to the current credential. The public assistant-history directory profile is intentionally limited to 11 read-only tools; use it only when the user specifically wants that restricted connection.
Operating workflow
- Resolve the requested outcome, current workspace, and permitted scope. Ask only for missing choices that materially affect the result.
- Discover the live tool schema. Never infer arguments from a similar REST endpoint, an old example, or a static ID.
- Read current state before changing it. Resolve resource IDs with list/get tools and preserve fields the user did not ask to change.
- Choose the smallest tool call that achieves the request. Use a preview, test, or simulation when the domain offers one and it is useful.
- Before an external or difficult-to-reverse effect, ensure the user has explicitly authorized the exact target and action. If the current request already supplies that authorization, do not ask again.
- Verify the result with the corresponding read tool or returned status. For asynchronous work, follow the
1---2name: famulor-skill3description: Operate Famulor assistants, communication history, campaigns, knowledge, automations, telephony, and workspace administration through its hosted MCP server.4---567# Famulor89Use Famulor through the hosted Streamable HTTP MCP server:1011```text12https://app.famulor.io/mcp13```1415This skills-only package does not install or configure the MCP connection. Add the endpoint as a remote Streamable HTTP server in the user's MCP client, then let that client run its OAuth flow. A workspace API key can also authenticate trusted server-to-server clients, but never ask a user to paste a key into chat or place one in files, commands, logs, or source control.1617If the Famulor MCP server is unavailable in the current client, help the user connect it and stop before claiming to have read or changed their account. Do not substitute an undocumented REST endpoint.1819## When to Use2021- Use when a request needs real Famulor workspace data or an authenticated Famulor action.22- Use when configuring or operating assistants, communication history, campaigns, knowledge, automations, telephony, billing, or workspace settings.23- Do not use for generic voice-agent advice that does not require Famulor.2425## Limitations2627- Static tool tables are a dated routing snapshot; the authenticated server's live `tools/list` schema is authoritative.28- Available tools, fields, scopes, plan features, prices, limits, and provider behavior can differ by workspace and change over time.29- This skill cannot grant missing consent, roles, scopes, plan entitlements, provider approvals, or regulatory authorization.30- External calls, messages, purchases, migrations, and integrations may have costs or effects outside Famulor; verify their returned status instead of assuming completion or rollback.3132## Route to the smallest toolset3334Use only the group or groups needed for the request. A narrower URL keeps discovery and model context manageable:3536```text37https://app.famulor.io/mcp?toolsets=assistants,calls38```3940Read the linked reference only for the relevant group. Each reference contains every tool currently assigned to that group; the live `tools/list` schema remains authoritative.4142| Toolset | Use for | Current tools | Reference |43| --- | --- | ---: | --- |44| `assistants` | Assistants, versions, models, voices, reusable tools, bookings, tests, and integrations | 56 | [assistants](references/toolsets/assistants.md) |45| `calls` | Calls, unified history, transcripts, QA, callbacks, and live control | 15 | [calls](references/toolsets/calls.md) |46| `campaigns` | Campaigns, Audience contacts, leads, segments, consent, suppression, and outbound limits | 34 | [campaigns](references/toolsets/campaigns.md) |47| `messaging` | WhatsApp, Messenger, email, Slack, connectors, templates, and sender profiles | 44 | [messaging](references/toolsets/messaging.md) |48| `telephony` | Phone numbers, SIP trunks, caller IDs, carriers, and number verification | 27 | [telephony](references/toolsets/telephony.md) |49| `knowledge` | Knowledge bases, documents, FAQs, websites, and connected drives | 20 | [knowledge](references/toolsets/knowledge.md) |50| `dashboards` | Dashboards, analytics, widgets, and layout | 19 | [dashboards](references/toolsets/dashboards.md) |51| `automations` | Automations, connections, CRM sync, routines, and runs | 28 | [automations](references/toolsets/automations.md) |52| `billing` | Balance, usage, transactions, invoices, billing recovery, and referrals | 7 | [billing](references/toolsets/billing.md) |53| `settings` | Account, workspaces, API keys, retention, memory, domains, and sessions | 20 | [settings](references/toolsets/settings.md) |54| `platform` | Authorized white-label reseller customer administration | 6 | [platform](references/toolsets/platform.md) |55| `migration` | Previewing and importing supported Famulor 1.0 resources | 2 | [migration](references/toolsets/migration.md) |56| `tasks` | Durable exports, simulations, crawls, and campaign preparation | 4 | [tasks](references/toolsets/tasks.md) |5758The full snapshot contains 282 tools. `list_mcp_toolsets` can report the groups visible to the current credential. The public `assistant-history` directory profile is intentionally limited to 11 read-only tools; use it only when the user specifically wants that restricted connection.5960## Operating workflow61621. Resolve the requested outcome, current workspace, and permitted scope. Ask only for missing choices that materially affect the result.632. Discover the live tool schema. Never infer arguments from a similar REST endpoint, an old example, or a static ID.643. Read current state before changing it. Resolve resource IDs with list/get tools and preserve fields the user did not ask to change.654. Choose the smallest tool call that achieves the request. Use a preview, test, or simulation when the domain offers one and it is useful.665. Before an external or difficult-to-reverse effect, ensure the user has explicitly authorized the exact target and action. If the current request already supplies that authorization, do not ask again.676. Verify the result with the corresponding read tool or returned status. For asynchronous work, follow the