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 commands/williamzujkowski/mcp-standards-server/configgit clone --depth 1 https://github.com/williamzujkowski/mcp-standards-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/commands/williamzujkowski/mcp-standards-server/config)<a href="https://agentmods.dev/commands/williamzujkowski/mcp-standards-server/config"><img src="https://agentmods.dev/badge/commands/williamzujkowski/mcp-standards-server/config.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 | $0.00000 | $0.02399 |
| Opus 5 | $0.00000 | $0.01200 |
| Sonnet 5 | $0.00000 | $0.00480 |
| Haiku 4.5 | $0.00000 | $0.00240 |
Grade A, and why
config 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 4d 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 — 451 lines — stays where its author put it; the contents beside it link to each section on GitHub.
config Command
Show, validate, and manage MCP Standards Server configuration.
Synopsis
mcp-standards config [options]
Description
The config command helps you view, validate, and manage configuration files for the MCP Standards Server. It supports multiple configuration formats and provides tools for migration and validation.
Options
--show
Display current configuration.
mcp-standards config --show
--validate
Validate configuration file syntax and values.
mcp-standards config --validate
--init
Initialize a new configuration file with defaults.
mcp-standards config --init
--edit
Open configuration in default editor.
mcp-standards config --edit
--get <key>
Get a specific configuration value.
mcp-standards config --get repository.owner
--set <key> <value>
Set a specific configuration value.
mcp-standards config --set sync.cache_ttl_hours 48
--migrate
Migrate configuration from older format.
mcp-standards config --migrate
--schema
Show configuration schema.
mcp-standards config --schema
Examples
Show Configuration
mcp-standards config --show
Output:
# Current configuration from: /home/user/.config/mcp-standards/config.yaml
repository:
owner: williamzujkowski
repo: standards
branch: main
path: standards
auth:
type: none # or 'token', 'app'
sync:
cache_ttl_hours: 24
parallel_downloads: 5
retry_attempts: 3
timeout_seconds: 30
include_patterns:
- "*.yaml"
- "*.md"
exclude_patterns:
- "*.draft.*"
- ".git*"
cache:
directory: ~/.cache/mcp-standards
max_size_mb: 500
compression: true
auto_cleanup:
enabled: true
threshold_percent: 80
search:
enabled: true
model: sentence-transformers/all-MiniLM-L6-v2
index_on_sync: true
cache_embeddings: true
server:
host: localhost
port: 3000
log_level: info
token_optimization:
enabled: true
default_budget: 8000
model_type: gpt-4
validation:
enabled: true
strict_mode: false
custom_rules: []
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.
- 4d ago First seen · 451 lines · 0 tokens per session scan A b87f0d98b6ed
config is a command published in the GitHub repository williamzujkowski/mcp-standards-server (3 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,399 tokens. 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 commands, from other repositories
git
Git operations with intelligent commit messages and workflow optimization.
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.