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-extensibilitynpx skills add agentfront/frontmcp --skill frontmcp-extensibilitygit 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-extensibility)<a href="https://agentmods.dev/skills/agentfront/frontmcp/frontmcp-extensibility"><img src="https://agentmods.dev/badge/skills/agentfront/frontmcp/frontmcp-extensibility.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.00124 | $0.02362 |
| Opus 5 | $0.00062 | $0.01181 |
| Sonnet 5 | $0.00025 | $0.00472 |
| Haiku 4.5 | $0.00012 | $0.00236 |
Grade A, and why
frontmcp-extensibility 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 — 164 lines — stays where its author put it; the contents beside it link to each section on GitHub.
FrontMCP Extensibility
Patterns and examples for extending FrontMCP servers with external npm packages. The core SDK handles MCP protocol, DI, and lifecycle — this skill shows how to integrate third-party libraries as providers and tools.
When to Use This Skill
Must Use
- Adding semantic search or similarity matching to your server (VectoriaDB)
- Integrating an external npm package as a FrontMCP provider
- Building tools that wrap third-party services (databases, APIs, ML models)
Recommended
- Looking for patterns to structure external service integrations
- Deciding between provider-based vs direct integration for a library
- Adding capabilities like applescript automation, VM execution, or data processing
Skip When
- You need to build core MCP components (see
frontmcp-development) - You need to configure auth, transport, or CORS (see
frontmcp-config) - You need to write a plugin with hooks and context extensions (see
create-plugin)
Decision: Use this skill when integrating external libraries into your FrontMCP server as providers or tools.
Prerequisites
- A FrontMCP project (see
frontmcp-setupif you don't have one). - The external library installed as a runtime
dependency(notdevDependency). - Familiarity with FrontMCP providers and tools (see
create-provider,create-tool).
Steps
- Pick the integration shape — provider for stateful clients (DB, search index), tool-only for stateless one-shot calls.
- Wrap the library in a provider — declare a typed DI token and a
@Providerclass so consumers depend on the boundary, not the library. - Register it — add to
@App({ providers: [...] })or@FrontMcp({ providers: [...] }). - Expose via tools/resources — call
this.get(TOKEN)inToolContext/ResourceContext; never import the library directly from the tool. - Handle errors at the boundary — translate library-specific errors into
PublicMcpError/InvalidInputErrorso MCP clients see structured failures.
What ships with it
7 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/skill-audit-log/custom-store.md 7.2 KB
- examples/skill-audit-log/verify-chain.md 2.3 KB
- examples/vectoriadb/product-catalog-search.md 5.4 KB
- examples/vectoriadb/semantic-search-with-persistence.md 4.4 KB
- examples/vectoriadb/tfidf-keyword-search.md 3.5 KB
- references/skill-audit-log.md 12 KB
- references/vectoriadb.md 12 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 · 164 lines · 124 tokens per session scan A 4f603138ce45
frontmcp-extensibility is a skill published in the GitHub repository agentfront/frontmcp (146 stars, last pushed 3d ago), licensed Apache-2.0. It adds 124 tokens to every session and 2,362 once invoked, about $0.0006 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
solr-query
To build and debug Solr queries: eDisMax, block join, JSON facets, kNN, explain.
mem0-api
Complete reference for building applications with the Mem0 memory API and SDK — a persistent, self-improving memory layer for LLM agents and chatbots. ALWAYS use this skill when the user mentions: "mem0", "mem0ai", "MemoryClient", "Memory()", "memory layer for AI", "persistent agent memory", "long-term memory for…
orchardcore-ai-memory
Skill for configuring persistent, user-scoped AI Memory in Orchard Core using the CrestApps AI Memory module. Covers memory indexing backends (Azure AI Search and Elasticsearch), memory tools, preemptive memory retrieval, and per-profile memory settings. Use this skill when requests mention Orchard Core AI Memory…
vector-hybrid-search
Retrieve knowledge from a vector-store collection via the vector-mcp MCP server's vectorsearch tool — semantic (ANN) search, lexical BM25 search, or a hybrid of the two fused with Reciprocal Rank Fusion. Use when the agent must answer a question from an indexed corpus, pull top-k relevant chunks for RAG context, or…
orchardcore-ai-memory-azureai
Skill for indexing CrestApps Orchard Core AI Memory with Azure AI Search. Covers managed memory index mappings, embedding dimensions, user-scoped vector retrieval, index profiles, and Azure AI Search operations. Use this skill when requests mention AI Memory Azure AI Search, AIMemoryAzureAISearchIndexProfileHandler…
init-rag-rat
Use to set up rag-rat in a repository that is not indexed yet — when the rag-rat MCP server is DORMANT (its tools return {"status":"noindex"} with a "Run rag-rat init … then restart" remedy), or when the user asks to initialize / configure / "set up rag-rat" / "index this repo" / choose an embedding backend. Drives…