MCP client for the SpawnDock knowledge server, it allows AI agents (Claude, Cursor, etc.) to access the SpawnDock knowledge base for development and is focused on the following topics:
- Telegram mini apps and the TON blockchain, access to 55+ documents covering:
- Telegram Mini Apps — getting started, WebApp API, navigation, theming, testing, security, performance
- TON Blockchain — smart contracts, jettons, NFTs, DeFi, wallets, DNS, payments
- TON Connect — authentication, wallet integration
- Deployment — Cloudflare Pages, Vercel, GitHub Pages
- Templates — shop, game, landing, quiz, menu, portfolio
npx @spawn-dock/mcpOpen https://t.me/TMASpawnerBot, get your API token, and configure it in your project when connecting to an authenticated server:
API_TOKEN=your-shared-api-token npx @spawn-dock/mcpAdd to your project's .mcp.json:
{
"mcpServers": {
"tma-knowledge": {
"command": "npx",
"args": ["@spawn-dock/mcp"],
"env": {
"API_TOKEN": "your-shared-api-token"
}
}
}
}Add to Cursor's MCP settings:
{
"tma-knowledge": {
"command": "npx",
"args": ["@spawn-dock/mcp"],
"env": {
"API_TOKEN": "your-shared-api-token"
}
}
}MIT