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/pbv7/worksection-mcp/claude-mdgit clone --depth 1 https://github.com/pbv7/worksection-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.02032 | $0.02032 |
| Opus 5 | $0.01016 | $0.01016 |
| Sonnet 5 | $0.00406 | $0.00406 |
| Haiku 4.5 | $0.00203 | $0.00203 |
Grade B, and why
worksection-mcp CLAUDE.md scanned grade B with 1 finding 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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
- **Claude Code MCP config** goes in `~/.claude.json` (under `mcpServers`), NOT `~/.claude/settings.json`. How it starts
The opening of the file, as written. The whole thing — 180 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Commands
# Install dependencies
uv sync --frozen --extra dev
# Run all checks (format, lint, lint-docs, typecheck, test) — mirrors CI
make check
# Individual checks
make format # ruff format (writes)
make lint # ruff check (read-only)
make lint-docs # markdownlint-cli2 on all *.md
make typecheck # mypy + pyright
# Tests
make test # pytest with coverage (HTML + term)
make test-fast # pytest without coverage
uv run pytest tests/test_tools/test_analytics.py # single file
uv run pytest tests/test_server.py::test_create_server # single test
uv run pytest -k "oauth" # pattern match
# Live E2E test for large response offload (requires real credentials + data)
uv run python tests/live_large_response_offload_roundtrip.py -v
# Package management — always use uv, never pip
uv add <pkg> # add runtime dep
uv add --optional dev <pkg> # add dev dep
uv lock # regenerate uv.lock after pyproject.toml changes
Architecture
Source Layout
src/worksection_mcp/
├── server.py # composition root — create_server()
├── mcp_protocols.py # ToolRegistrar / ResourceRegistrar protocols
├── large_response.py # LargeResponseStore + LargePayloadToolRegistrar
├── logging_config.py # unified logging pipeline
├── auth/ # OAuth2Manager, token storage, SSL, callback server
├── cache/ # FileCache (disk) + SessionCache (in-memory)
├── client/ # WorksectionClient (api.py) + RateLimiter
├── config/ # Settings (pydantic-settings, .env)
├── resources/ # files.py + offload.py (MCP resources)
├── tools/ # one module per domain; offload.py = helper tools
└── utils/ # date_utils.py + response_utils.py
Server Startup
server.py:create_server() is the composition root. It wires all singletons:
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 · 180 lines · 2,032 tokens per session scan B 999ae214ff5b
worksection-mcp CLAUDE.md is an instructions file published in the GitHub repository pbv7/worksection-mcp (2 stars, last pushed 3mo ago), licensed MIT. It adds 2,032 tokens to every session, about $0.0102 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
intervals-icu-mcp CLAUDE.md
Instructions for hhopke/intervals-icu-mcp, covering claude.md, project overview, development commands, architecture (quick reference) and tool categories.
ai-toolkit AGENTS.md
Instructions for pipefy/ai-toolkit, covering repository guidelines, documentation map, project structure, import namespace migration: pipefysdk → pipefy and src/pipefysdk/init.py (transitional shim).
flyto-core CLAUDE.md
Instructions for flytohub/flyto-core, covering claude notes, cross-agent handoff and shared code intelligence.
Plonk AGENTS.md
Instructions for ostapondo/Plonk, covering agent rules, layout, adding a module, build & verify and code style.
rosetta AGENTS.md
Instructions for tikoci/rosetta, covering codex instructions for rosetta, first reads, development defaults and mcp and client config.
pharo-smalltalk-interop-mcp-server CLAUDE.md
Instructions for mumez/pharo-smalltalk-interop-mcp-server, covering claude.md, project overview, development setup, environment variables and common commands.