लाइव MCP सर्वर

AI से बात करके अपना Telegram बोट चलाएं

BotLaunch एक लाइव MCP सर्वर चलाता है, ताकि Claude, Cursor और अन्य AI असिस्टेंट आपकी निजी API कुंजी से आपके बोट और Mini App स्टोर को नेटिव टूल की तरह संभालें।

https://api.botlaunch.io/api/v1/mcp

Connect in under a minute

01
Create an API key

Open Settings, API & AI in the dashboard and create a personal key. It starts with bl_live_ and is shown only once.

02
Add the MCP server

In Cursor, Claude Code, or a custom MCP client, add the server URL below and set your key as a Bearer token.

03
Just ask

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 Code
claude mcp add --transport http botlaunch \
  https://api.botlaunch.io/api/v1/mcp \
  --header "Authorization: Bearer $BOTLAUNCH_API_KEY"
Cursor / custom MCP client

Add a remote (HTTP) MCP server pointing at https://api.botlaunch.io/api/v1/mcp and set the header Authorization: Bearer bl_live_....

Verify with curl
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"}'
12 tools

What your AI can do

get_account_context

Read your plan, granted scopes and rate limits.

list_bots

List the bots on your account.

get_bot_status

Check a bot status and its settings.

validate_bot_token

Verify a Telegram bot token before connecting.

connect_bot

Connect a bot to your account.

list_modules

List available modules and their configuration.

configure_module

Enable and configure a module (anti-spam, captcha, welcome).

send_broadcast

Send a broadcast message to a connected group.

list_shop_designs

Browse the ready-made storefront designs.

create_product

Add a product to your Mini App shop.

set_shop_theme

Set your storefront theme (palette, fonts, layout).

set_shop_content

Set 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 docs

Frequently 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.