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/spacefrontiers/mcp/agents-mdgit clone --depth 1 https://github.com/SpaceFrontiers/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.00679 | $0.00679 |
| Opus 5 | $0.00340 | $0.00340 |
| Sonnet 5 | $0.00136 | $0.00136 |
| Haiku 4.5 | $0.00068 | $0.00068 |
Grade A, and why
mcp 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 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 — 55 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — Space Frontiers MCP server
This is the source for the Space Frontiers MCP server, deployed at https://mcp.spacefrontiers.org/.
What it does
Exposes four read-only, idempotent tools that wrap the Space Frontiers search API:
spacefrontiers_search_documents— peer-reviewed papers, books, patents, Wikipediaspacefrontiers_search_social— Reddit, Telegram channels, YouTube transcriptsspacefrontiers_fetch_document— full text + references for one canonical URIspacefrontiers_search_in_document— passages within one document by query
All tool returns are typed Pydantic models — outputSchema and structuredContent are auto-generated by FastMCP. Every result carries a canonical source_uri for citation.
Layout
mcp_server.py— Starlette + FastMCP entrypoint, OAuth well-known endpoints.tools.py— tool definitions and Pydantic output schemas.prompts.py—deep_research_agentprompt.auth.py— Bearer-token validation againstusers-api, Origin allowlist,MCP-Protocol-Versionallowlist.client.py— async HTTP client for the v2 search API.server.json— entry for the Official MCP Registry (registry.modelcontextprotocol.io).smithery.yaml— Smithery deployment config.registry.json— legacy in-house registry metadata.tests/— pytest unit tests for each tool.
Local dev
uv sync
uv run pytest
uv run fastmcp run mcp_server.py
The hosted endpoint expects Authorization: Bearer <key> and validates the
token against users-api. Stdio/self-hosted use reads
SPACE_FRONTIERS_API_KEY for upstream API authentication.
Conventions
- Python 3.10+. Single quotes (ruff format). Type hints everywhere.
- All tool descriptions follow the "Use when / Do not use when / Examples" template; lead with verb + scope.
- Every tool has
readOnlyHint: trueandidempotentHint: trueannotations — required for the Anthropic Connectors Directory. - Tool names are prefixed
spacefrontiers_to avoid collisions in multi-server agent setups. - The MCP spec versions this server speaks are listed in
auth.py:SUPPORTED_PROTOCOL_VERSIONS. Bump there when adopting a new revision.
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 · 55 lines · 679 tokens per session scan A 3648ff18eb9f
mcp AGENTS.md is an instructions file published in the GitHub repository SpaceFrontiers/mcp (11 stars, last pushed 1mo ago), licensed MIT. It adds 679 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
cortex-gateway AGENTS.md
Instructions for wellknownmcp/cortex-gateway, covering agents.md, what this is, verify the claims yourself, the demo authorization server builds independently and protected-resource metadata (rfc 9728).
payload-mcp-oauth CLAUDE.md
Instructions for BrainWeb/payload-mcp-oauth, covering claude.md, project overview, repository structure, commands and install (run once at root).
gmail-mcp CLAUDE.md
Instructions for cunicopia-dev/gmail-mcp, covering gmail mcp — development guide, what it is, layout, module responsibilities and oauth model.
pubcrawl CLAUDE.md
Instructions for nickjlamb/pubcrawl, covering claude.md, project overview, commands, testing and architecture.
mcp-sso CLAUDE.md
Instructions for acartag7/mcp-sso, covering claude code session notes (mcp-sso) and repository quality rules.
paper-pilot CLAUDE.md
Instructions for aytzey/paper-pilot, covering claude.md, best fit, setup, first workflow to try and claude prompt patterns.