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 skills/agentfront/frontmcp/frontmcp-guidesnpx skills add agentfront/frontmcp --skill frontmcp-guidesgit clone --depth 1 https://github.com/agentfront/frontmcpWrote 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/skills/agentfront/frontmcp/frontmcp-guides)<a href="https://agentmods.dev/skills/agentfront/frontmcp/frontmcp-guides"><img src="https://agentmods.dev/badge/skills/agentfront/frontmcp/frontmcp-guides.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.00157 | $0.05180 |
| Opus 5 | $0.00078 | $0.02590 |
| Sonnet 5 | $0.00031 | $0.01036 |
| Haiku 4.5 | $0.00016 | $0.00518 |
Grade A, and why
frontmcp-guides 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 5d 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 — 478 lines — stays where its author put it; the contents beside it link to each section on GitHub.
FrontMCP End-to-End Guides
Complete build walkthroughs and best practices for FrontMCP servers. Each example starts from an empty directory and ends with a deployed, tested server. Every pattern references the specific skill that teaches it.
When to Use This Skill
Must Use
- Starting a new FrontMCP project from scratch and want a complete walkthrough to follow
- Learning FrontMCP architecture by building progressively complex real examples
- Need to see how multiple skills work together in a complete application
Recommended
- Planning a new project and want to see how similar architectures are structured
- Onboarding a team member who learns best from complete working examples
- Reviewing best practices for file organization, naming, and code patterns
Skip When
- You need to learn one specific component type (use the specific reference, e.g.,
create-toolunderfrontmcp-development/references/) - Looking for the right reference for a task (use domain routers:
frontmcp-development,frontmcp-deployment, etc.) - You need CLI/install instructions for the skills system (see
frontmcp-skills-usage)
Decision: Use this skill when you want to see how everything fits together. Open individual references under each router's
references/directory when you need focused instruction.
Prerequisites
- Node.js 24+ and npm/yarn installed
- Familiarity with TypeScript and decorators
frontmcpCLI available globally (npm install -g frontmcp)
Steps
- Choose an example that matches your project's complexity level (Beginner, Intermediate, Advanced)
- Work through the Planning Checklist to define your project's scope
- Follow the example code and architecture, referencing individual skills for deeper guidance
- Verify your implementation using the Verification Checklist at the end of this skill
Planning Checklist
Before writing any code, answer these questions:
1. What does the server do?
- What tools does it expose? (actions AI clients can call)
- What resources does it expose? (data AI clients can read)
- What prompts does it expose? (conversation templates)
What ships with it
12 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- examples/example-knowledge-base/agent-and-plugin.md 6.1 KB
- examples/example-knowledge-base/multi-app-composition.md 3.2 KB
- examples/example-knowledge-base/vector-search-and-resources.md 4.1 KB
- examples/example-task-manager/auth-and-crud-tools.md 4.2 KB
- examples/example-task-manager/authenticated-e2e-tests.md 5.2 KB
- examples/example-task-manager/redis-provider-with-di.md 4.9 KB
- examples/example-weather-api/server-and-app-setup.md 2.4 KB
- examples/example-weather-api/unit-and-e2e-tests.md 4.3 KB
- examples/example-weather-api/weather-tool-with-schemas.md 2.5 KB
- references/example-knowledge-base.md 19 KB
- references/example-task-manager.md 15 KB
- references/example-weather-api.md 8.6 KB
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.
- 5d ago First seen · 478 lines · 157 tokens per session scan A 4a75e7848774
frontmcp-guides is a skill published in the GitHub repository agentfront/frontmcp (146 stars, last pushed 3d ago), licensed Apache-2.0. It adds 157 tokens to every session and 5,180 once invoked, about $0.0008 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 skills, from other repositories
design
Pick the right in-process code pattern for a refactoring or extensibility need (GoF creational/structural/behavioral), and access implementation guides for specific patterns. Use as a decision workflow when unsure which pattern family fits, or go directly to pattern references when you already know. NOT for…
reference-compiler-cli
Explains the mental model and architecture of the code under packages/compiler-cli. You MUST use this skill any time you plan to work with code in packages/compiler-cli.
reference-core
Explains the mental model and architecture of the code under packages/core. You MUST use this skill any time you plan to work with code in packages/core.
playwright
Use when the task requires capturing or automating a real browser from the terminal.
fact-check
Verify technical accuracy of JavaScript concept pages by checking code examples, MDN/ECMAScript compliance, and external resources to prevent misinformation.
context7-docs
Fetch up-to-date documentation and code examples for any library, framework, SDK, CLI tool, or cloud service. Use whenever the user asks about a specific library — even well-known ones like React, Next.js, Prisma, Express, Tailwind, Django, or Spring Boot — because training data may not reflect recent API changes or…