frontmcp-extensibility

frontmcp-extensibility is a skill for Claude Code, Codex from agentfront/frontmcp. It costs 124 tokens per session (2,362 once invoked), scanned A, original, Apache-2.0.

A guide for adding outside libraries and services to FrontMCP servers. These can include search systems, databases, APIs, machine-learning models, or automation tools.

In plain words
What is it for?
Use it to add semantic search, wrap third-party services as tools, and structure integrations as reusable providers.
Why use it?
It provides patterns for connecting external code without mixing integration details throughout the server.

Skill for Claude CodeCodex

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 skills/agentfront/frontmcp/frontmcp-extensibility
Any agent
npx skills add agentfront/frontmcp --skill frontmcp-extensibility
Clone the repo
git clone --depth 1 https://github.com/agentfront/frontmcp

Made for: Claude Code, Codex.

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 frontmcp-extensibility

README.md
[![agentmods](https://agentmods.dev/badge/skills/agentfront/frontmcp/frontmcp-extensibility.svg)](https://agentmods.dev/skills/agentfront/frontmcp/frontmcp-extensibility)
Your own site
<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>
Per session 124 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,362 The whole file, excluding the scripts and references it only reads on demand.
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 $0.00124 $0.02362
Opus 5 $0.00062 $0.01181
Sonnet 5 $0.00025 $0.00472
Haiku 4.5 $0.00012 $0.00236

Measured 5d ago against content hash 4f603138ce45, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

libs/skills/catalog/frontmcp-extensibility/SKILL.md · 164 lines

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-setup if you don't have one).
  • The external library installed as a runtime dependency (not devDependency).
  • Familiarity with FrontMCP providers and tools (see create-provider, create-tool).

Steps

  1. Pick the integration shape — provider for stateful clients (DB, search index), tool-only for stateless one-shot calls.
  2. Wrap the library in a provider — declare a typed DI token and a @Provider class so consumers depend on the boundary, not the library.
  3. Register it — add to @App({ providers: [...] }) or @FrontMcp({ providers: [...] }).
  4. Expose via tools/resources — call this.get(TOKEN) in ToolContext/ResourceContext; never import the library directly from the tool.
  5. Handle errors at the boundary — translate library-specific errors into PublicMcpError/InvalidInputError so MCP clients see structured failures.

Read the full file on GitHub · 164 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. 5d ago First seen · 164 lines · 124 tokens per session scan A 4f603138ce45

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

solr-query

To build and debug Solr queries: eDisMax, block join, JSON facets, kNN, explain.

griddynamics/rosetta · 27 tokens

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…

pinkpixel-dev/mem0-mcp · 186 tokens

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…

CrestApps/CrestApps.AgentSkills · 166 tokens

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…

Knuckles-Team/vector-mcp · 113 tokens

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…

CrestApps/CrestApps.AgentSkills · 140 tokens

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…

cq27-dev/rag-rat · 224 tokens