frihet-mcp AGENTS.md

frihet-mcp AGENTS.md is an instructions file for Codex, OpenCode from Frihet-io/frihet-mcp. It costs 801 tokens per session, scanned A, original, MIT.

Repository instructions for a TypeScript server that follows the Model Context Protocol (MCP), a standard way for AI tools to connect to services. They cover building, testing, code style, errors and server conventions.

In plain words
What is it for?
Use them when adding or changing MCP tools, running the server, handling API errors, or checking TypeScript code before committing.
Why use it?
They give coding agents the project’s rules, so changes are more likely to build, pass tests and follow existing conventions.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md.

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/frihet-io/frihet-mcp/agents-md
Clone the repo
git clone --depth 1 https://github.com/Frihet-io/frihet-mcp

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 frihet-mcp AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/frihet-io/frihet-mcp/agents-md.svg)](https://agentmods.dev/instructions/frihet-io/frihet-mcp/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/frihet-io/frihet-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/frihet-io/frihet-mcp/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 801 This file is loaded in full into every session.
When invoked 801 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.00801 $0.00801
Opus 5 $0.00400 $0.00400
Sonnet 5 $0.00160 $0.00160
Haiku 4.5 $0.00080 $0.00080

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

Security

Grade A, and why

frihet-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 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 · 73 lines

How it starts

The opening of the file, as written. The whole thing — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Frihet MCP Server

Open-source MCP server for Frihet ERP. TypeScript, Node >= 20, MIT license. Distributed via npm + Cloudflare Worker (mcp.frihet.io) + Smithery + Anthropic registry.

Build & Test

npm install                      # Install deps
npm run build                    # tsc → dist/
npm test                         # Run native node test suite
npm start                        # Run server via stdio (local debug)

Pre-commit: npm run build must succeed. npm test must pass.

Code Style

  • TypeScript strict mode (strict: true)
  • ES2022 target, NodeNext module resolution
  • Tools use the established canonical snake_case names, such as create_invoice
  • Return human-readable MCP content plus outputSchema-valid structuredContent
  • Zod schemas on inputSchema (strict)
  • Preserve actionable, sanitized API errors through the shared error helpers
  • One tool per logical operation — no batching unless explicit
  • Async/await throughout, no callbacks
  • Logger from src/logger.ts — never console.log in tool code
  • Observability: every tool wrapped via src/observability.ts (Langfuse)

Conventions

  • Commit messages: feat(tools): add <family> CRUD / fix(invoices): handle null totals
  • Branch names: feat/<descriptive-slug>
  • Atomic commits — one tool family per commit minimum
  • Update README.md tool count badge when adding tools
  • Tool descriptions are concise and bilingual (English / Spanish)
  • Test fixtures in src/__tests__/fixtures/

Testing standards

  • Every mutating tool must have at least 1 idempotency test
  • Every tool must have at least 1 schema rejection test (bad input)
  • Every tool must have at least 1 happy path test
  • Coverage target: > 80% lines, 100% on auth/scope branches

Gotchas

  • NEVER mutate process.env — read once into config object
  • API client must respect Idempotency-Key — propagate from tool input when present
  • Don't log full request bodies — PII (NIF/IBAN/email). Use mask() from logger
  • Cloudflare Worker is a separate deployment surface — pinging the Worker is not a substitute for testing the npm package locally
  • MCP SDK breaking changes — pin @modelcontextprotocol/sdk minor; major bumps require manual review
  • Postinstall scriptnode scripts/postinstall.js || true runs harmlessly. Do not make required

Read the full file on GitHub · 73 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 · 73 lines · 801 tokens per session scan A beb12f4ed5ff

Subscribe to this mod's changes

frihet-mcp AGENTS.md is an instructions file published in the GitHub repository Frihet-io/frihet-mcp (9 stars, last pushed yesterday), licensed MIT. It adds 801 tokens to every session, about $0.0040 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-31.

Related

Other instructions, from other repositories