Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/textbee/textbee-mcp/claude-mdgit clone --depth 1 https://github.com/textbee/textbee-mcpWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00728 | $0.00728 |
| Opus 5 | $0.00364 | $0.00364 |
| Sonnet 5 | $0.00146 | $0.00146 |
| Haiku 4.5 | $0.00073 | $0.00073 |
Grade A, and why
textbee-mcp CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 58 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
Project instructions for Claude when working in the textbee-mcp repo.
What this is
@textbee/mcp: a stdio MCP server that lets Claude Desktop, Claude Code, Cursor, and
any MCP client send and read SMS through a textbee.dev account. A thin wrapper over
@textbee/sdk; the SDK is the only HTTP client, there is no code generation.
Hard rules
- NEVER use em dashes or en dashes anywhere: code, comments, docs, commit messages.
- Branding is lowercase "textbee" / "textbee.dev"; PascalCase identifiers use Textbee.
- Acronyms are words in identifiers:
sendSms, neversendSMS. - stdout is the MCP JSON-RPC channel. No
console.loginsrc/; diagnostics go to stderr viastderrLogger. - Never log, echo, or embed API key values, phone numbers, or message bodies in errors.
- Nothing throws across the MCP boundary: every handler returns
isError: truewith an actionable message viaerrorResult. - Never expose or document the deprecated device-scoped routes (send or history).
Agent-facing surfaces show only account-level
POST /gateway/send-smsandGET /gateway/messages. - The library entry (
src/index.ts) must stay side-effect free: no process globals, no transport, no fetch patching. Onlysrc/bin.tstouchesprocess. - Tool handlers never close over a process-global API key; credentials come from the
per-call
CredentialResolver.
Commands
pnpm buildcompiles todist/.pnpm testruns vitest (capped at 2 workers).pnpm run typecheckchecks src and tests.pnpm run check:hygieneenforces the dash, casing, and console.log rules.pnpm inspectlists the tools through the MCP Inspector CLI.
Architecture (one bullet per src file)
bin.tsstdio bootstrap: loads env config, installs the fetch timeout, connects.index.tslibrary entry, re-exports only.tools.tsthe 3 tool definitions, descriptions, zod shapes, and the McpServer factory.config.tsenv parsing,normalizeBaseUrl, VERSION, stderr logger.credentials.tsstatic (stdio) and authInfo-extra (remote host) credential resolvers.errors.tsthe single error-to-text mapper, including the two distinct 429s.format.tsmessage and device rendering;messageDirectionis the only place that reads a message's direction.dedupe.tscross-request duplicate-send store for HTTP hosts.fetch-timeout.tsopt-in process-wide fetch timeout, entrypoints only.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 58 lines · 728 tokens per session scan A 9b61532986f7
textbee-mcp CLAUDE.md is an instructions file published in the GitHub repository textbee/textbee-mcp (0 stars, last pushed 11d ago), licensed MIT. It adds 728 tokens to every session, about $0.0036 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
mcp-server-excel coverage-prevention-strategy.instructions.md
Instructions for sbroenne/mcp-server-excel, covering generated surface coverage, contract change workflow, required checks and common incomplete changes.
mcp-server-excel mcp-llm-guidance.instructions.md
Instructions for sbroenne/mcp-server-excel, a project described as: Automate real Microsoft Excel with AI via MCP Server or CLI — Power Query, DAX, VBA, PivotTables, charts, and 326 operations.
openrouter-mcp-multimodal AGENTS.md
Instructions for stabgan/openrouter-mcp-multimodal, covering agent instructions, before you ship, releasing (read this before publishing), short version and version files (must all match package.json).
ntfy-mcp-server AGENTS.md
Instructions for cyanheads/ntfy-mcp-server, covering developer protocol, what's next?, core rules, patterns and tool.
Plonk AGENTS.md
Instructions for ostapondo/Plonk, covering agent rules, layout, adding a module, build & verify and code style.
mcp-dockhand copilot-review.instructions.md
Instructions for strausmann/mcp-dockhand: When reviewing pull requests in this repository.