@younesb/sendkit-mcp
v0.0.2
Published
SendKit MCP server (stdio) exposing a `telegram` tool via `sendkit-core`.
Readme
local-mcp
SendKit MCP server (stdio) exposing a telegram tool via sendkit-core.
Setup
bun install
cp .env.example .env # from repo root
# set TELEGRAM_BOT_TOKEN in .envRun manually
bun run dev:local-mcp # from repo rootCursor
Project MCP config lives at .cursor/mcp.json. After editing, reload Cursor (Cmd+Shift+P → Developer: Reload Window).
To pass the token inline instead of .env:
{
"mcpServers": {
"sendkit": {
"type": "stdio",
"command": "bun",
"args": ["run", "dev:local-mcp"],
"env": {
"TELEGRAM_BOT_TOKEN": "<bot-token>"
}
}
}
}