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/ismailsaoulaj/reddit-mcp-server/agents-mdgit clone --depth 1 https://github.com/ismailsaoulaj/reddit-mcp-serverWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/ismailsaoulaj/reddit-mcp-server/agents-md)<a href="https://agentmods.dev/instructions/ismailsaoulaj/reddit-mcp-server/agents-md"><img src="https://agentmods.dev/badge/instructions/ismailsaoulaj/reddit-mcp-server/agents-md.svg" alt="Measured on agentmods" height="20"></a>What 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.1 | $0.00675 | $0.00675 |
| Opus 5 | $0.00338 | $0.00338 |
| Sonnet 5 | $0.00135 | $0.00135 |
| Haiku 4.5 | $0.00068 | $0.00068 |
Grade A, and why
reddit-mcp-server AGENTS.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 6d 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 — 47 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Commands
uv sync --locked --extra dev # install (Python 3.11+, src layout)
uv run ruff check . # lint
uv run ruff format --check . # format check — CI runs this separately; a passing `ruff check` does not imply it
uv run pytest tests/ # full suite
uv run pytest tests/test_tools.py -k <name> # single test
CI gate = lint + format-check + tests. Run all three before delivering code.
Architecture
Layered, dependency-inward (domain ← application ← infrastructure/interface):
src/reddit_mcp/domain/— Pydantic models, enrichment logicsrc/reddit_mcp/application/tools.py— MCP tool definitions +DependencyContainersrc/reddit_mcp/interface/server.py— FastMCP server; transport chosen via--transport stdio|sse|httpinmain.pysrc/reddit_mcp/infrastructure/— Reddit clients implementing the cascading fallback: OAuth → session cookie → browser-impersonated JSON (curl_cffi) → Arctic Shift → DDG
Server works zero-config; credentials are optional env vars (REDDIT_CLIENT_ID/SECRET, REDDIT_SESSION_COOKIE, REDDIT_SAVED_RSS_URL) loaded by pydantic-settings from .env. See .env.example.
Gotchas
- stdout is JSON-RPC in stdio mode. All logging must go to stderr when
--transport stdio(handled bysetup_logging). Neverprint()to stdout. - Anti-ban shields are load-bearing: token-bucket rate limiter, global semaphore (
REDDIT_MAX_CONCURRENCY), singleflight coalescing. New outbound HTTP calls must route through the shared HTTP client and respect these. - Tests use explicit
@pytest.mark.asynciomarkers; there is no conftest.py and no pytest config section — don't rely on asyncio auto-mode.
Git workflow
- Never push directly to
main— even when a push would succeed (admin bypass). Always create a feature branch, open a PR, let CI pass, then merge.
Releases
- Version lives only in
pyproject.toml; keepCHANGELOG.md(Keep a Changelog format) in sync on bumps. - Bumping the version invalidates
uv.lock(it pins the project's own version) — always runuv lockafter a bump, or CI'suv sync --lockedfails. - Publishing is automated: pushing a GitHub release triggers build + PyPI trusted publish (
.github/workflows/release.yml). Don't publish manually. - Commit style: Conventional Commits (
feat,fix, …); breaking changes need!and aBREAKING CHANGE:footer.
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.
- 6d ago First seen · 47 lines · 675 tokens per session scan A 4a83a707ec6f
reddit-mcp-server AGENTS.md is an instructions file published in the GitHub repository ismailsaoulaj/reddit-mcp-server (34 stars, last pushed 13d ago), licensed MIT. It adds 675 tokens to every session, about $0.0034 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-30.
Other instructions, from other repositories
mcp-server-mattermost AGENTS.md
AGENTS.md instructions for cloud-ru-tech/mcp-server-mattermost, covering claude.md, project overview, documentation references, commands and install dependencies.
mcp-server-mattermost CLAUDE.md
Claude Code instructions for cloud-ru-tech/mcp-server-mattermost, a project described as: MCP server for Mattermost — let Claude, Cursor, and other AI assistants work with channels, messages, and files.
sigmap AGENTS.md
AGENTS.md instructions for manojmallick/sigmap, covering sigmap — agents.md, append strategy (required), auto-generated signatures, code signatures and sigmap commands.
llm-ide-rules react.instructions.md
Instructions for iloveitaly/llm-ide-rules, covering react, mock data, react hook form and styling.
sagemath-mcp CLAUDE.md
Instructions for XBP-Europe/sagemath-mcp, covering claude.md, project, commands, linting and testing.
obsidian-mcp-rs CLAUDE.md
Instructions for MrRefactoring/obsidian-mcp-rs, covering claude.md, commands, build / run, tests and lint gates enforced by ci (.github/workflows/ci.yml).