INDIVIDUAL MCP TOOL
create_contact
Create a contact manually — for imports or externally-sourced audiences; contacts who message a bot are created automatically.
LIVE ENDPOINT
https://api.flowcastle.ai/api/mcp
Connect to this endpoint to inspect the live schema for create_contact and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
- A tool name or description suggests sending messages.
Parent server
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.telegram-flow-builder-mcp]
url = "https://api.flowcastle.ai/api/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"telegram-flow-builder-mcp": {
"type": "http",
"url": "https://api.flowcastle.ai/api/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: telegram-flow-builder-mcp
Remote MCP URL: https://api.flowcastle.ai/api/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": {
"telegram-flow-builder-mcp": {
"url": "https://api.flowcastle.ai/api/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"telegram-flow-builder-mcp": {
"type": "http",
"url": "https://api.flowcastle.ai/api/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "telegram-flow-builder-mcp",
"transport": "streamable-http",
"url": "https://api.flowcastle.ai/api/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
list_applications— List the applications this API key can access, with the caller role and the permissions it grants.create_application— Create a new application (workspace) owned by the caller.update_application— Update application-level settings (name, active state, default language, incoming-message behavior).list_watched_groups— List the group/channel chats a telegram_mtproto userbot monitors.set_watched_groups— Replace a telegram_mtproto userbot's watched-groups list — the chats it monitors.sync_dialog_contacts— Import a telegram_mtproto userbot's existing chats as contacts — DM partners, groups, and channels — so everything the account already talks to becomes a valid send_message target without waiting for each chat to message first.get_workspace_summary— Return a compact application, flow, sequence, operation, and bot summary — the cheapest way to orient in a workspace.get_variable_context— Search variable definitions by scope and keyword.