skillmcp

skillmcp is a skill for Claude Code, Codex from clivechung/skillmcp. It costs 65 tokens per session (1,748 once invoked), scanned A, original, MIT.

A connection to a remote SkillMCP server, which is a shared service for finding, examining, and retrieving AI-agent skills and related documents.

In plain words
What is it for?
Use it to connect to a local or remote SkillMCP service, search its skill collection, inspect entries, and fetch reference documents or examples.
Why use it?
It gives agents one place to discover reusable skills without manually searching separate files or repositories.

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

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 skillmcp

README.md
[![agentmods](https://agentmods.dev/badge/skills/clivechung/skillmcp/skillmcp.svg)](https://agentmods.dev/skills/clivechung/skillmcp/skillmcp)
Your own site
<a href="https://agentmods.dev/skills/clivechung/skillmcp/skillmcp"><img src="https://agentmods.dev/badge/skills/clivechung/skillmcp/skillmcp.svg" alt="Measured on agentmods" height="20"></a>
Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,748 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.00065 $0.01748
Opus 5 $0.00032 $0.00874
Sonnet 5 $0.00013 $0.00350
Haiku 4.5 $0.00006 $0.00175

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

Security

Grade A, and why

skillmcp 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 3d 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.

skills/skillmcp/SKILL.md · 189 lines

How it starts

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

SkillMCP MCP Server Integration

A guide and operational workflow for discovering, searching, inspecting, and retrieving AI agent skills via the SkillMCP (Skill Management System) Model Context Protocol (MCP) server.

SkillMCP delivers a centralized, horizontally scalable skill repository designed for autonomous agent fleets. It uses Stateless Streamable HTTP by default, allowing request/response decoupling across multiple backend replicas without requiring sticky sessions.


🚀 Quick Start

1. Transport & Connection Matrix

Transport Mode Endpoint URL HTTP Method Header Requirements Statefulness
Streamable HTTP http://<host>:8080/mcp POST Accept: application/json, text/event-streamContent-Type: application/json Stateless (horizontally scalable, HPA ready)
Health Check http://<host>:8080/healthz GET None Stateless

2. Antigravity MCP Client Configuration (mcp_config.json)

To register a remote SkillMCP instance in Antigravity or standard MCP client configurations:

{
  "mcpServers": {
    "skillmcp": {
      "type": "http",
      "url": "http://localhost:8080/mcp"
    }
  }
}

🛠️ Workflows

Workflow 1: Connecting & Validating Server Health

  1. Verify Backend Health & Readiness: Send a GET request to http://<host>:8080/healthz.
    • Expected Status: 200 OK
    • Expected Body: {"status": "healthy", "service": "skillmcp", "version": "<version>"}
  2. Perform Stateless JSON-RPC Handshake: Send an initialize JSON-RPC request to /mcp with header Accept: application/json, text/event-stream:
    {
      "jsonrpc": "2.0",
      "id": 1,
      "method": "initialize",
      "params": {
        "protocolVersion": "2024-11-05",
        "capabilities": {},
        "clientInfo": { "name": "agent-client", "version": "1.0.0" }
      }
    }
    
  3. Verify Server Capabilities: Ensure the response confirms protocol version 2024-11-05 and advertises tools, prompts, and resources.

Read the full file on GitHub · 189 lines

Files

What ships with it

2 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.

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. 3d ago First seen · 189 lines · 65 tokens per session scan A 781c85409d3b

Subscribe to this mod's changes

skillmcp is a skill published in the GitHub repository clivechung/skillmcp (0 stars, last pushed 3d ago), licensed MIT. It adds 65 tokens to every session and 1,748 once invoked, about $0.0003 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 skills, from other repositories

awesome-mac-maintainer

Maintain the Awesome Mac repository when adding, updating, or relocating app entries across README.md, README-zh.md, README-ja.md, and README-ko.md. Use this when the task requires category selection, multilingual sync, concise listing copy, ordering consistency, or repository-specific curation rules.

jaywcjlove/awesome-mac · 64 tokens

stripe-projects

Use after E2B sandbox/API access has been provisioned through Stripe Projects and the user needs to use the resulting E2B API key with the E2B CLI, JavaScript SDK, Python SDK, or Code Interpreter SDK.

e2b-dev/E2B · 51 tokens

apify-actorization-v2

Apify Actorization workflow skill. Use this skill when the user needs Actorization converts existing software into reusable serverless applications compatible with the Apify platform. Actors are programs packaged as Docker images that accept well-defined JSON input, perform an action, and optionally produce structured…

diegosouzapw/awesome-omni-skills · 84 tokens

docs-strategy

Documentation architecture, information hierarchy, style guides, versioning strategy, and cross-team documentation governance for production software projects.

LuuOW/meridian-mcp · 26 tokens

osf

Use the osf MCP server for read-only Open Science Framework tasks.

edithatogo/osf-cli-go · 0 tokens

digital-products

Sell software, ebooks, and other downloads with secure delivery, license key generation, download limits, and expiration controls using platform apps.

finsilabs/awesome-ecommerce-skills · 28 tokens