reddit-mcp-server AGENTS.md

reddit-mcp-server AGENTS.md is an instructions file for Codex, OpenCode from ismailsaoulaj/reddit-mcp-server. It costs 675 tokens per session, scanned A, original, MIT.

Instructions for a Reddit MCP server, a service that lets compatible AI tools access Reddit data. They describe its Python commands, layered design, fallback data sources, and optional credentials.

In plain words
What is it for?
Installing dependencies, linting and formatting Python code, running tests, choosing server transports, and maintaining Reddit data access.
Why use it?
They explain the checks required before delivery and document how the server obtains data when OAuth or other access methods are unavailable.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: mentions AGENTS.md; mentions OpenCode.

Install

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.

agentmods
npx agentmods add instructions/ismailsaoulaj/reddit-mcp-server/agents-md
Clone the repo
git clone --depth 1 https://github.com/ismailsaoulaj/reddit-mcp-server

Made for: Codex, OpenCode.

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

agentmods badge for reddit-mcp-server AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/ismailsaoulaj/reddit-mcp-server/agents-md.svg)](https://agentmods.dev/instructions/ismailsaoulaj/reddit-mcp-server/agents-md)
Your own site
<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>
Per session 675 This file is loaded in full into every session.
When invoked 675 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 6d ago against content hash 4a83a707ec6f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

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.

AGENTS.md · 47 lines

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 (domainapplicationinfrastructure/interface):

  • src/reddit_mcp/domain/ — Pydantic models, enrichment logic
  • src/reddit_mcp/application/tools.py — MCP tool definitions + DependencyContainer
  • src/reddit_mcp/interface/server.py — FastMCP server; transport chosen via --transport stdio|sse|http in main.py
  • src/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 by setup_logging). Never print() 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.asyncio markers; 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; keep CHANGELOG.md (Keep a Changelog format) in sync on bumps.
  • Bumping the version invalidates uv.lock (it pins the project's own version) — always run uv lock after a bump, or CI's uv sync --locked fails.
  • 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 a BREAKING CHANGE: footer.

Read the full file on GitHub · 47 lines

Changes

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.

  1. 6d ago First seen · 47 lines · 675 tokens per session scan A 4a83a707ec6f

Subscribe to this mod's changes

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.