skills-over-mcp
Provides skills for branching, commits, and pull request workflows.
Includes structured code review processes with security checklists and PR management.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@skills-over-mcpdeploy the latest changes to staging"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
skills-over-mcp
Skills over MCP: agent workflows as standard MCP resources with a skill:// URI scheme.
npm installQuick start
# Start the MCP server (port 3001) and web UI (port 3000)
npm run server &
npm run webOpen http://localhost:3000, type what you need ("deploy to production", "review this PR"), and the LLM routes you to the right skill. Steps walk you through the workflow with live tool execution.
Related MCP server: skills-mcp-server
How it works

skill://index.json returns the discovery index. skill://git-workflow/SKILL.md returns the full skill. Skills reference tools by name; the UI renders inline tool panels.
Why skills, not just tools?
Discovery model. tools/list returns full schemas for every tool, all loaded into the LLM context at once. There is no tools/read. Resources have a two-step fetch: resources/list returns lightweight metadata, then resources/read loads one resource on demand. Skills use this to get lazy loading without new protocol primitives.
tools/list → [full schema A, full schema B, ...] // all in context
resources/list → [name A, name B, ...] // just the index
resources/read → full content of A // one at a timeBut wouldn't tool search or progressive tool loading solve this? It would fix the discovery problem (finding the right tool from hundreds). But skills solve a different problem: process knowledge.
A tool says create_branch(branch_name: string). A skill says:
Name it
<type>/<ticket>-<slug>, not whatever you wantAlways branch from
mainunless the ticket says otherwiseRun
run_testsbefore pushingIf integration tests fail but your change is frontend-only, that's acceptable
Open a PR using this specific template
That's team knowledge that doesn't fit in a tool schema. Even with perfect tool discovery, the agent still needs to know how your team uses those tools together. Skills encode that multi-step, conditional, opinionated workflow. Tools are the verbs; skills are the playbook.
Skills included
skills/
├── git-workflow/SKILL.md # Branching, commits, PRs
├── code-review/SKILL.md # Structured review + security checklist
│ └── references/security-checklist.md
└── deploy-service/SKILL.md # Pre-flight → staging → canary → monitoringDeploy
npm run deployDeploys to Cloudflare Workers as a self-contained worker with embedded skill content. Live at https://skills-over-mcp.h3manth.com.
Architecture
MCP Server (
src/server.ts): Streamable HTTP transport, servesskill://resources and toolsWeb Bridge (
src/web.ts): HTTP bridge connecting the browser to the MCP serverWorker (
src/worker.ts): Cloudflare Worker bundling everything for edge deploymentUI (
public/index.html): Intent-based runner, AI-powered skill routing via Cloudflare Workers AI
Timeline
2025-12-20 Skills and MCP, Better Together blog post
2025-12-22 RFC: Remote Agent Skills, URL-based Skill Import
2026-02-01 MCP Interest Group formed; experimental repo created
2026-04-14 Initial charter formalized by MCP (via SEP-2149)
Related
Skills Over MCP Spec, SEP-2640
experimental-ext-skills, the Interest Group repo
MCP SDK, protocol implementation
License
MIT © Hemanth.HM
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceEnables orchestration of MCP tool calls through declarative YAML-defined directed graphs with data transformation, conditional routing, and observable execution flows.7918MIT
- AlicenseAqualityDmaintenanceExposes Cursor-style skill packs (SKILL.md trees) via MCP resources, tools, and prompts, enabling any MCP client to list, get, search skills, and retrieve skill context.320ISC
- Alicense-qualityAmaintenanceEnables users to define and run MCP tools using declarative YAML configs with built-in trust enforcement, credential brokering, and tamper-evident audit logging.14MIT
- Alicense-qualityAmaintenanceEnables AI agents to discover, install, and manage SKILL.md skills from a Git-backed registry via MCP tools for search, install, and list operations.51MIT
Related MCP Connectors
A registry of 5,900+ peer-authored skills any MCP agent can search and load on demand.
Create, browse, remix, collaborate on, and run durable AI workflow nodes from MCP hosts.
Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hemanth/skills-over-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server