ModelBound
OfficialThe ModelBound MCP server provides local-first agent skill management and optional cloud sync for AI IDEs like Cursor, Claude, Kiro, and Windsurf.
Local Capabilities (no API key required)
ide.detectLayout— Detect which IDE conventions exist in your working directoryskills.listLocal/skills.readLocal/skills.writeLocal— List, read, and write local skill filesskills.lint— Lint for front-matter issues, token count, broken links, and TODOsskills.validateFormat— Validate against the agentskills.io standardskills.convert— Convert between IDE formats (e.g. Cursor → Claude, Kiro, Codex)skills.diff— Compare a local skill against its cloud counterpart by slug
Cloud Capabilities (requires MODELBOUND_API_KEY)
cloud.pullSkill/cloud.pushSkill— Pull or push skills from/to the ModelBound cloud librarycloud.listSkills— List cloud skills, filterable byai_type(skill, rule, system-prompt, etc.) andsource_platformcloud.resourceTree— Get the full resource hierarchy grouped by platform → directory → files (useful for orchestrators)cloud.search— Full-text search across all cloud contentcloud.installMarketplaceSkill— Install a public marketplace skill into your libraryoptimization.health— Get token health scores and staleness metrics for your context library
Supports converting and managing skills for Amazon Q.
modelbound-mcp
Local-first MCP server for agent skills. Validate, lint, diff, and convert agent skill files across Cursor, Claude, Codex, Kiro, Windsurf, VS Code, and Amazon Q — no account required. Optional cloud sync with ModelBound.
Why ModelBound?
AI tools come and go. You might use Cursor today, switch to Claude Code tomorrow, and try Kiro next week — but your skills, rules, and context shouldn't be locked into any one of them. ModelBound gives you a single place to store and manage your agent skills, so you can move between tools freely without rebuilding your setup each time. Write a skill once, sync it everywhere, and get more value out of every AI subscription you're already paying for.
Related MCP server: SkillPort
What it does
modelbound-mcp is a small Model Context Protocol server you run locally over stdio. It exposes tools to your IDE / agent using dot-notation naming for navigable discovery:
Local (no API key, no network):
ide.detectLayout— find which IDE conventions your repo usesskills.listLocal,skills.readLocal,skills.writeLocalskills.lint— front-matter, token count, broken links, TODO scanskills.validateFormat— agentskills.io complianceskills.convert— translate between IDE formats (e.g. Cursor → Claude)skills.diff— compare a local skill with its cloud counterpart
Cloud (with MODELBOUND_API_KEY):
cloud.pullSkill,cloud.pushSkill,cloud.searchcloud.listSkills— now acceptsai_typeandsource_platformfilters; every row includesai_type,source_platform,source_path, andrepocloud.resourceTree— returns the team's full hierarchy grouped by platform → top-level dir (.claude/skills,.cursor/rules,.kiro/steering, …) → files. Use this beforecloud.listSkillswhen an orchestrator needs to map context before loading.cloud.installMarketplaceSkilloptimization.health
Resource hierarchy
Orchestrators that juggle multiple AI platforms can call cloud.resourceTree once to get a complete map of available skills, rules, hooks, steering files, and system prompts — grouped exactly how each platform expects them on disk. Pair it with the new ai_type / source_platform filters on cloud.listSkills to load only the slice you need. See examples/resource-tree.ts.
The cloud tools are a thin JSON-RPC proxy to mcp.modelbound.co. All business logic stays server-side; this repo never touches your data or secrets.
Migration from 0.1.x — old snake_case names (
detect_ide_layout,pull_skill, …) were removed in 0.2.0. The hosted ModelBound MCP server still accepts both forms forever for backward compatibility.
Install
npx modelbound-mcpOr install globally:
npm i -g modelbound-mcpUse as an MCP server
Cursor (.cursor/mcp.json)
{
"mcpServers": {
"modelbound": {
"command": "npx",
"args": ["-y", "modelbound-mcp"],
"env": { "MODELBOUND_API_KEY": "mb_live_..." }
}
}
}MODELBOUND_API_KEY is optional. Without it, local tools still work.
See examples/ for Claude Desktop, Kiro, Windsurf, and VS Code configs.
Use as a CLI
modelbound-mcp detect # which IDE layouts exist here?
modelbound-mcp ls # list every skill file
modelbound-mcp lint .cursor/rules/ # lint a directory
modelbound-mcp lint .codex/skills/ # lint Codex skills
modelbound-mcp validate ./SKILL.md # agentskills.io compliance
modelbound-mcp convert --from cursor --to claude ./rule.mdc > out.mdContributing
We want help. Specifically:
New IDE adapters — Zed, Aider, Continue, JetBrains AI, Cline. See CONTRIBUTING.md for the ~50 line recipe.
Linter rules — token estimation accuracy, dead-link detection, format-specific gotchas.
Format converters — fidelity improvements between adapter pairs.
Browse good first issues and the roadmap.
Related projects
Project | Description |
Terminal + CI for token optimization, skill pipeline, and version management | |
VS Code/Cursor extension for rules sync and MCP bridge | |
Cursor slash commands for pipeline, trust & safety, and versions | |
Claude Code plugin for pipeline, hooks, and skill sync | |
Open-source curated AI context packs for engineering teams |
Also on Smithery (stdio via npx modelbound-mcp) and the MCP Registry. Install hub: modelbound.co/connect
License
MIT © ModelBound
Maintenance
Latest Blog Posts
- 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/ModelBound/modelbound-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server