ربات تلگرام خود را با گفتوگو با هوش مصنوعی مدیریت کنید
BotLaunch یک سرور زندهٔ MCP اجرا میکند، بنابراین Claude، Cursor و دیگر دستیارهای هوش مصنوعی با کلید API شخصی شما، ربات و فروشگاه Mini App شما را مانند ابزارهای بومی مدیریت میکنند.
https://api.botlaunch.io/api/v1/mcpConnect in under a minute
Open Settings, API & AI in the dashboard and create a personal key. It starts with bl_live_ and is shown only once.
In Cursor, Claude Code, or a custom MCP client, add the server URL below and set your key as a Bearer token.
Tell your assistant what to do, for example connect a bot and turn on anti-spam and a captcha. It runs the tools with your permissions.
claude mcp add --transport http botlaunch \
https://api.botlaunch.io/api/v1/mcp \
--header "Authorization: Bearer $BOTLAUNCH_API_KEY"Add a remote (HTTP) MCP server pointing at https://api.botlaunch.io/api/v1/mcp and set the header Authorization: Bearer bl_live_....
curl -X POST https://api.botlaunch.io/api/v1/mcp \
-H "Authorization: Bearer $BOTLAUNCH_API_KEY" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'What your AI can do
get_account_contextRead your plan, granted scopes and rate limits.
list_botsList the bots on your account.
get_bot_statusCheck a bot status and its settings.
validate_bot_tokenVerify a Telegram bot token before connecting.
connect_botConnect a bot to your account.
list_modulesList available modules and their configuration.
configure_moduleEnable and configure a module (anti-spam, captcha, welcome).
send_broadcastSend a broadcast message to a connected group.
list_shop_designsBrowse the ready-made storefront designs.
create_productAdd a product to your Mini App shop.
set_shop_themeSet your storefront theme (palette, fonts, layout).
set_shop_contentSet your storefront content blocks.
Safe by design
Keys are scoped with a positive allowlist and rate-limited per plan, with X-RateLimit headers on every response. Anything outside a key scope is denied, so a key can never reach billing, admin, or account settings.
No MCP client? Use the REST API
The same key authenticates our public REST API at api.botlaunch.io/api/v1. Send it as an Authorization Bearer header and start with GET /context to read your plan, scopes, and limits.
Read the API docsFrequently asked
Which AI clients can connect?
Any MCP client that supports a remote HTTP server with a custom Authorization header, such as Cursor, Claude Code, and custom integrations. Clients without MCP can use the REST API with the same key.
Is it safe to give a key to an AI?
Yes, within the limits you set. Keys are scoped to specific actions, rate-limited by plan, and can never access billing, admin, or account settings. You can revoke a key at any time in the dashboard.
Does it cost extra?
No. API and MCP access use your existing plan; rate limits scale with the plan you are on. Creating and using API keys is included.