[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-build-mcpb":3,"mdc--5y40yb-key":38,"related-repo-anthropic-build-mcpb":3312,"related-org-anthropic-build-mcpb":3405},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":33,"sourceUrl":36,"mdContent":37},"build-mcpb","package and distribute MCP servers","This skill should be used when the user wants to \"package an MCP server\", \"bundle an MCP\", \"make an MCPB\", \"ship a local MCP server\", \"distribute a local MCP\", discusses \".mcpb files\", mentions bundling a Node or Python runtime with their MCP server, or needs an MCP server that interacts with the local filesystem, desktop apps, or OS and must be installable without the user having Node\u002FPython set up.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20,23],{"name":14,"slug":15,"type":16},"Packaging","packaging","tag",{"name":18,"slug":19,"type":16},"Claude Code","claude-code",{"name":21,"slug":22,"type":16},"MCP","mcp",{"name":24,"slug":25,"type":16},"Agents","agents",32228,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-plugins-official","2026-04-06T17:59:31.159961",null,3591,[19,22,32],"skills",{"repoUrl":27,"stars":26,"forks":30,"topics":34,"description":35},[19,22,32],"Official, Anthropic-managed directory of high quality Claude Code Plugins.","https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fclaude-plugins-official\u002Ftree\u002FHEAD\u002Fplugins\u002Fmcp-server-dev\u002Fskills\u002Fbuild-mcpb","---\nname: build-mcpb\ndescription: This skill should be used when the user wants to \"package an MCP server\", \"bundle an MCP\", \"make an MCPB\", \"ship a local MCP server\", \"distribute a local MCP\", discusses \".mcpb files\", mentions bundling a Node or Python runtime with their MCP server, or needs an MCP server that interacts with the local filesystem, desktop apps, or OS and must be installable without the user having Node\u002FPython set up.\nversion: 0.1.0\n---\n\n# Build an MCPB (Bundled Local MCP Server)\n\nMCPB is a local MCP server **packaged with its runtime**. The user installs one file; it runs without needing Node, Python, or any toolchain on their machine. It's the sanctioned way to distribute local MCP servers.\n\n> MCPB is the **secondary** distribution path. Anthropic recommends remote MCP servers for directory listing — see https:\u002F\u002Fclaude.com\u002Fdocs\u002Fconnectors\u002Fbuilding\u002Fwhat-to-build.\n\n**Use MCPB when the server must run on the user's machine** — reading local files, driving a desktop app, talking to localhost services, OS-level APIs. If your server only hits cloud APIs, you almost certainly want a remote HTTP server instead (see `build-mcp-server`). Don't pay the MCPB packaging tax for something that could be a URL.\n\n---\n\n## What an MCPB bundle contains\n\n```\nmy-server.mcpb              (zip archive)\n├── manifest.json           ← identity, entry point, config schema, compatibility\n├── server\u002F                 ← your MCP server code\n│   ├── index.js\n│   └── node_modules\u002F       ← bundled dependencies (or vendored)\n└── icon.png\n```\n\nThe host reads `manifest.json`, launches `server.mcp_config.command` as a **stdio** MCP server, and pipes messages. From your code's perspective it's identical to a local stdio server — the only difference is packaging.\n\n---\n\n## Manifest\n\n```json\n{\n  \"$schema\": \"https:\u002F\u002Fraw.githubusercontent.com\u002Fanthropics\u002Fmcpb\u002Fmain\u002Fschemas\u002Fmcpb-manifest-v0.4.schema.json\",\n  \"manifest_version\": \"0.4\",\n  \"name\": \"local-files\",\n  \"version\": \"0.1.0\",\n  \"description\": \"Read, search, and watch files on the local filesystem.\",\n  \"author\": { \"name\": \"Your Name\" },\n  \"server\": {\n    \"type\": \"node\",\n    \"entry_point\": \"server\u002Findex.js\",\n    \"mcp_config\": {\n      \"command\": \"node\",\n      \"args\": [\"${__dirname}\u002Fserver\u002Findex.js\"],\n      \"env\": {\n        \"ROOT_DIR\": \"${user_config.rootDir}\"\n      }\n    }\n  },\n  \"user_config\": {\n    \"rootDir\": {\n      \"type\": \"directory\",\n      \"title\": \"Root directory\",\n      \"description\": \"Directory to expose. Defaults to ~\u002FDocuments.\",\n      \"default\": \"${HOME}\u002FDocuments\",\n      \"required\": true\n    }\n  },\n  \"compatibility\": {\n    \"claude_desktop\": \">=1.0.0\",\n    \"platforms\": [\"darwin\", \"win32\", \"linux\"]\n  }\n}\n```\n\n**`server.type`** — `node`, `python`, or `binary`. Informational; the actual launch comes from `mcp_config`.\n\n**`server.mcp_config`** — the literal command\u002Fargs\u002Fenv to spawn. Use `${__dirname}` for bundle-relative paths and `${user_config.\u003Ckey>}` to substitute install-time config. **There's no auto-prefix** — the env var names your server reads are exactly what you put in `env`.\n\n**`user_config`** — install-time settings surfaced in the host's UI. `type: \"directory\"` renders a native folder picker. `sensitive: true` stores in OS keychain. See `references\u002Fmanifest-schema.md` for all fields.\n\n---\n\n## Server code: same as local stdio\n\nThe server itself is a standard stdio MCP server. Nothing MCPB-specific in the tool logic.\n\n```typescript\nimport { McpServer } from \"@modelcontextprotocol\u002Fsdk\u002Fserver\u002Fmcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol\u002Fsdk\u002Fserver\u002Fstdio.js\";\nimport { z } from \"zod\";\nimport { readFile, readdir } from \"node:fs\u002Fpromises\";\nimport { join } from \"node:path\";\nimport { homedir } from \"node:os\";\n\n\u002F\u002F ROOT_DIR comes from what you put in manifest's server.mcp_config.env — no auto-prefix\nconst ROOT = (process.env.ROOT_DIR ?? join(homedir(), \"Documents\"));\n\nconst server = new McpServer({ name: \"local-files\", version: \"0.1.0\" });\n\nserver.registerTool(\n  \"list_files\",\n  {\n    description: \"List files in a directory under the configured root.\",\n    inputSchema: { path: z.string().default(\".\") },\n    annotations: { readOnlyHint: true },\n  },\n  async ({ path }) => {\n    const entries = await readdir(join(ROOT, path), { withFileTypes: true });\n    const list = entries.map(e => ({ name: e.name, dir: e.isDirectory() }));\n    return { content: [{ type: \"text\", text: JSON.stringify(list, null, 2) }] };\n  },\n);\n\nserver.registerTool(\n  \"read_file\",\n  {\n    description: \"Read a file's contents. Path is relative to the configured root.\",\n    inputSchema: { path: z.string() },\n    annotations: { readOnlyHint: true },\n  },\n  async ({ path }) => {\n    const text = await readFile(join(ROOT, path), \"utf8\");\n    return { content: [{ type: \"text\", text }] };\n  },\n);\n\nconst transport = new StdioServerTransport();\nawait server.connect(transport);\n```\n\n**Sandboxing is entirely your job.** There is no manifest-level sandbox — the process runs with full user privileges. Validate paths, refuse to escape `ROOT`, allowlist spawns. See `references\u002Flocal-security.md`.\n\nBefore hardcoding `ROOT` from a config env var, check if the host supports `roots\u002Flist` — the spec-native way to get user-approved directories. See `references\u002Flocal-security.md` for the pattern.\n\n---\n\n## Build pipeline\n\n### Node\n\n```bash\nnpm install\nnpx esbuild src\u002Findex.ts --bundle --platform=node --outfile=server\u002Findex.js\n# or: copy node_modules wholesale if native deps resist bundling\nnpx @anthropic-ai\u002Fmcpb pack\n```\n\n`mcpb pack` zips the directory and validates `manifest.json` against the schema.\n\n### Python\n\n```bash\npip install -t server\u002Fvendor -r requirements.txt\nnpx @anthropic-ai\u002Fmcpb pack\n```\n\nVendor dependencies into a subdirectory and prepend it to `sys.path` in your entry script. Native extensions (numpy, etc.) must be built for each target platform — avoid native deps if you can.\n\n---\n\n## MCPB has no sandbox — security is on you\n\nUnlike mobile app stores, MCPB does NOT enforce permissions. The manifest has no `permissions` block — the server runs with full user privileges. `references\u002Flocal-security.md` is mandatory reading, not optional. Every path must be validated, every spawn must be allowlisted, because nothing stops you at the platform level.\n\nIf you came here expecting filesystem\u002Fnetwork scoping from the manifest: it doesn't exist. Build it yourself in tool handlers.\n\nIf your server's only job is hitting a cloud API, stop — that's a remote server wearing an MCPB costume. The user gains nothing from running it locally, and you're taking on local-security burden for no reason.\n\n---\n\n## MCPB + UI widgets\n\nMCPB servers can serve UI resources exactly like remote MCP apps — the widget mechanism is transport-agnostic. A local file picker that browses the actual disk, a dialog that controls a native app, etc.\n\nWidget authoring is covered in the **`build-mcp-app`** skill; it works the same here. The only difference is where the server runs.\n\n---\n\n## Testing\n\n```bash\n# Interactive manifest creation (first time)\nnpx @anthropic-ai\u002Fmcpb init\n\n# Run the server directly over stdio, poke it with the inspector\nnpx @modelcontextprotocol\u002Finspector node server\u002Findex.js\n\n# Validate manifest against schema, then pack\nnpx @anthropic-ai\u002Fmcpb validate\nnpx @anthropic-ai\u002Fmcpb pack\n\n# Sign for distribution\nnpx @anthropic-ai\u002Fmcpb sign dist\u002Flocal-files.mcpb\n\n# Install: drag the .mcpb file onto Claude Desktop\n```\n\nTest on a machine **without** your dev toolchain before shipping. \"Works on my machine\" failures in MCPB almost always trace to a dependency that wasn't actually bundled.\n\n---\n\n## Reference files\n\n- `references\u002Fmanifest-schema.md` — full `manifest.json` field reference\n- `references\u002Flocal-security.md` — path traversal, sandboxing, least privilege\n",{"data":39,"body":41},{"name":4,"description":6,"version":40},"0.1.0",{"type":42,"children":43},"root",[44,53,67,93,112,116,123,135,163,166,172,1151,1194,1237,1274,1277,1283,1288,2773,2797,2824,2827,2833,2839,2919,2937,2942,2997,3010,3013,3019,3039,3044,3049,3052,3058,3063,3079,3082,3088,3253,3265,3268,3274,3306],{"type":45,"tag":46,"props":47,"children":49},"element","h1",{"id":48},"build-an-mcpb-bundled-local-mcp-server",[50],{"type":51,"value":52},"text","Build an MCPB (Bundled Local MCP Server)",{"type":45,"tag":54,"props":55,"children":56},"p",{},[57,59,65],{"type":51,"value":58},"MCPB is a local MCP server ",{"type":45,"tag":60,"props":61,"children":62},"strong",{},[63],{"type":51,"value":64},"packaged with its runtime",{"type":51,"value":66},". The user installs one file; it runs without needing Node, Python, or any toolchain on their machine. It's the sanctioned way to distribute local MCP servers.",{"type":45,"tag":68,"props":69,"children":70},"blockquote",{},[71],{"type":45,"tag":54,"props":72,"children":73},{},[74,76,81,83,91],{"type":51,"value":75},"MCPB is the ",{"type":45,"tag":60,"props":77,"children":78},{},[79],{"type":51,"value":80},"secondary",{"type":51,"value":82}," distribution path. Anthropic recommends remote MCP servers for directory listing — see ",{"type":45,"tag":84,"props":85,"children":89},"a",{"href":86,"rel":87},"https:\u002F\u002Fclaude.com\u002Fdocs\u002Fconnectors\u002Fbuilding\u002Fwhat-to-build",[88],"nofollow",[90],{"type":51,"value":86},{"type":51,"value":92},".",{"type":45,"tag":54,"props":94,"children":95},{},[96,101,103,110],{"type":45,"tag":60,"props":97,"children":98},{},[99],{"type":51,"value":100},"Use MCPB when the server must run on the user's machine",{"type":51,"value":102}," — reading local files, driving a desktop app, talking to localhost services, OS-level APIs. If your server only hits cloud APIs, you almost certainly want a remote HTTP server instead (see ",{"type":45,"tag":104,"props":105,"children":107},"code",{"className":106},[],[108],{"type":51,"value":109},"build-mcp-server",{"type":51,"value":111},"). Don't pay the MCPB packaging tax for something that could be a URL.",{"type":45,"tag":113,"props":114,"children":115},"hr",{},[],{"type":45,"tag":117,"props":118,"children":120},"h2",{"id":119},"what-an-mcpb-bundle-contains",[121],{"type":51,"value":122},"What an MCPB bundle contains",{"type":45,"tag":124,"props":125,"children":129},"pre",{"className":126,"code":128,"language":51},[127],"language-text","my-server.mcpb              (zip archive)\n├── manifest.json           ← identity, entry point, config schema, compatibility\n├── server\u002F                 ← your MCP server code\n│   ├── index.js\n│   └── node_modules\u002F       ← bundled dependencies (or vendored)\n└── icon.png\n",[130],{"type":45,"tag":104,"props":131,"children":133},{"__ignoreMap":132},"",[134],{"type":51,"value":128},{"type":45,"tag":54,"props":136,"children":137},{},[138,140,146,148,154,156,161],{"type":51,"value":139},"The host reads ",{"type":45,"tag":104,"props":141,"children":143},{"className":142},[],[144],{"type":51,"value":145},"manifest.json",{"type":51,"value":147},", launches ",{"type":45,"tag":104,"props":149,"children":151},{"className":150},[],[152],{"type":51,"value":153},"server.mcp_config.command",{"type":51,"value":155}," as a ",{"type":45,"tag":60,"props":157,"children":158},{},[159],{"type":51,"value":160},"stdio",{"type":51,"value":162}," MCP server, and pipes messages. From your code's perspective it's identical to a local stdio server — the only difference is packaging.",{"type":45,"tag":113,"props":164,"children":165},{},[],{"type":45,"tag":117,"props":167,"children":169},{"id":168},"manifest",[170],{"type":51,"value":171},"Manifest",{"type":45,"tag":124,"props":173,"children":177},{"className":174,"code":175,"language":176,"meta":132,"style":132},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"$schema\": \"https:\u002F\u002Fraw.githubusercontent.com\u002Fanthropics\u002Fmcpb\u002Fmain\u002Fschemas\u002Fmcpb-manifest-v0.4.schema.json\",\n  \"manifest_version\": \"0.4\",\n  \"name\": \"local-files\",\n  \"version\": \"0.1.0\",\n  \"description\": \"Read, search, and watch files on the local filesystem.\",\n  \"author\": { \"name\": \"Your Name\" },\n  \"server\": {\n    \"type\": \"node\",\n    \"entry_point\": \"server\u002Findex.js\",\n    \"mcp_config\": {\n      \"command\": \"node\",\n      \"args\": [\"${__dirname}\u002Fserver\u002Findex.js\"],\n      \"env\": {\n        \"ROOT_DIR\": \"${user_config.rootDir}\"\n      }\n    }\n  },\n  \"user_config\": {\n    \"rootDir\": {\n      \"type\": \"directory\",\n      \"title\": \"Root directory\",\n      \"description\": \"Directory to expose. Defaults to ~\u002FDocuments.\",\n      \"default\": \"${HOME}\u002FDocuments\",\n      \"required\": true\n    }\n  },\n  \"compatibility\": {\n    \"claude_desktop\": \">=1.0.0\",\n    \"platforms\": [\"darwin\", \"win32\", \"linux\"]\n  }\n}\n","json",[178],{"type":45,"tag":104,"props":179,"children":180},{"__ignoreMap":132},[181,193,238,276,314,351,389,450,476,515,553,578,617,661,686,723,732,741,750,775,800,837,875,912,950,976,984,992,1017,1055,1133,1142],{"type":45,"tag":182,"props":183,"children":186},"span",{"class":184,"line":185},"line",1,[187],{"type":45,"tag":182,"props":188,"children":190},{"style":189},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[191],{"type":51,"value":192},"{\n",{"type":45,"tag":182,"props":194,"children":196},{"class":184,"line":195},2,[197,202,208,213,218,223,229,233],{"type":45,"tag":182,"props":198,"children":199},{"style":189},[200],{"type":51,"value":201},"  \"",{"type":45,"tag":182,"props":203,"children":205},{"style":204},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[206],{"type":51,"value":207},"$schema",{"type":45,"tag":182,"props":209,"children":210},{"style":189},[211],{"type":51,"value":212},"\"",{"type":45,"tag":182,"props":214,"children":215},{"style":189},[216],{"type":51,"value":217},":",{"type":45,"tag":182,"props":219,"children":220},{"style":189},[221],{"type":51,"value":222}," \"",{"type":45,"tag":182,"props":224,"children":226},{"style":225},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[227],{"type":51,"value":228},"https:\u002F\u002Fraw.githubusercontent.com\u002Fanthropics\u002Fmcpb\u002Fmain\u002Fschemas\u002Fmcpb-manifest-v0.4.schema.json",{"type":45,"tag":182,"props":230,"children":231},{"style":189},[232],{"type":51,"value":212},{"type":45,"tag":182,"props":234,"children":235},{"style":189},[236],{"type":51,"value":237},",\n",{"type":45,"tag":182,"props":239,"children":241},{"class":184,"line":240},3,[242,246,251,255,259,263,268,272],{"type":45,"tag":182,"props":243,"children":244},{"style":189},[245],{"type":51,"value":201},{"type":45,"tag":182,"props":247,"children":248},{"style":204},[249],{"type":51,"value":250},"manifest_version",{"type":45,"tag":182,"props":252,"children":253},{"style":189},[254],{"type":51,"value":212},{"type":45,"tag":182,"props":256,"children":257},{"style":189},[258],{"type":51,"value":217},{"type":45,"tag":182,"props":260,"children":261},{"style":189},[262],{"type":51,"value":222},{"type":45,"tag":182,"props":264,"children":265},{"style":225},[266],{"type":51,"value":267},"0.4",{"type":45,"tag":182,"props":269,"children":270},{"style":189},[271],{"type":51,"value":212},{"type":45,"tag":182,"props":273,"children":274},{"style":189},[275],{"type":51,"value":237},{"type":45,"tag":182,"props":277,"children":279},{"class":184,"line":278},4,[280,284,289,293,297,301,306,310],{"type":45,"tag":182,"props":281,"children":282},{"style":189},[283],{"type":51,"value":201},{"type":45,"tag":182,"props":285,"children":286},{"style":204},[287],{"type":51,"value":288},"name",{"type":45,"tag":182,"props":290,"children":291},{"style":189},[292],{"type":51,"value":212},{"type":45,"tag":182,"props":294,"children":295},{"style":189},[296],{"type":51,"value":217},{"type":45,"tag":182,"props":298,"children":299},{"style":189},[300],{"type":51,"value":222},{"type":45,"tag":182,"props":302,"children":303},{"style":225},[304],{"type":51,"value":305},"local-files",{"type":45,"tag":182,"props":307,"children":308},{"style":189},[309],{"type":51,"value":212},{"type":45,"tag":182,"props":311,"children":312},{"style":189},[313],{"type":51,"value":237},{"type":45,"tag":182,"props":315,"children":317},{"class":184,"line":316},5,[318,322,327,331,335,339,343,347],{"type":45,"tag":182,"props":319,"children":320},{"style":189},[321],{"type":51,"value":201},{"type":45,"tag":182,"props":323,"children":324},{"style":204},[325],{"type":51,"value":326},"version",{"type":45,"tag":182,"props":328,"children":329},{"style":189},[330],{"type":51,"value":212},{"type":45,"tag":182,"props":332,"children":333},{"style":189},[334],{"type":51,"value":217},{"type":45,"tag":182,"props":336,"children":337},{"style":189},[338],{"type":51,"value":222},{"type":45,"tag":182,"props":340,"children":341},{"style":225},[342],{"type":51,"value":40},{"type":45,"tag":182,"props":344,"children":345},{"style":189},[346],{"type":51,"value":212},{"type":45,"tag":182,"props":348,"children":349},{"style":189},[350],{"type":51,"value":237},{"type":45,"tag":182,"props":352,"children":354},{"class":184,"line":353},6,[355,359,364,368,372,376,381,385],{"type":45,"tag":182,"props":356,"children":357},{"style":189},[358],{"type":51,"value":201},{"type":45,"tag":182,"props":360,"children":361},{"style":204},[362],{"type":51,"value":363},"description",{"type":45,"tag":182,"props":365,"children":366},{"style":189},[367],{"type":51,"value":212},{"type":45,"tag":182,"props":369,"children":370},{"style":189},[371],{"type":51,"value":217},{"type":45,"tag":182,"props":373,"children":374},{"style":189},[375],{"type":51,"value":222},{"type":45,"tag":182,"props":377,"children":378},{"style":225},[379],{"type":51,"value":380},"Read, search, and watch files on the local filesystem.",{"type":45,"tag":182,"props":382,"children":383},{"style":189},[384],{"type":51,"value":212},{"type":45,"tag":182,"props":386,"children":387},{"style":189},[388],{"type":51,"value":237},{"type":45,"tag":182,"props":390,"children":392},{"class":184,"line":391},7,[393,397,402,406,410,415,419,424,428,432,436,441,445],{"type":45,"tag":182,"props":394,"children":395},{"style":189},[396],{"type":51,"value":201},{"type":45,"tag":182,"props":398,"children":399},{"style":204},[400],{"type":51,"value":401},"author",{"type":45,"tag":182,"props":403,"children":404},{"style":189},[405],{"type":51,"value":212},{"type":45,"tag":182,"props":407,"children":408},{"style":189},[409],{"type":51,"value":217},{"type":45,"tag":182,"props":411,"children":412},{"style":189},[413],{"type":51,"value":414}," {",{"type":45,"tag":182,"props":416,"children":417},{"style":189},[418],{"type":51,"value":222},{"type":45,"tag":182,"props":420,"children":422},{"style":421},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[423],{"type":51,"value":288},{"type":45,"tag":182,"props":425,"children":426},{"style":189},[427],{"type":51,"value":212},{"type":45,"tag":182,"props":429,"children":430},{"style":189},[431],{"type":51,"value":217},{"type":45,"tag":182,"props":433,"children":434},{"style":189},[435],{"type":51,"value":222},{"type":45,"tag":182,"props":437,"children":438},{"style":225},[439],{"type":51,"value":440},"Your Name",{"type":45,"tag":182,"props":442,"children":443},{"style":189},[444],{"type":51,"value":212},{"type":45,"tag":182,"props":446,"children":447},{"style":189},[448],{"type":51,"value":449}," },\n",{"type":45,"tag":182,"props":451,"children":453},{"class":184,"line":452},8,[454,458,463,467,471],{"type":45,"tag":182,"props":455,"children":456},{"style":189},[457],{"type":51,"value":201},{"type":45,"tag":182,"props":459,"children":460},{"style":204},[461],{"type":51,"value":462},"server",{"type":45,"tag":182,"props":464,"children":465},{"style":189},[466],{"type":51,"value":212},{"type":45,"tag":182,"props":468,"children":469},{"style":189},[470],{"type":51,"value":217},{"type":45,"tag":182,"props":472,"children":473},{"style":189},[474],{"type":51,"value":475}," {\n",{"type":45,"tag":182,"props":477,"children":479},{"class":184,"line":478},9,[480,485,490,494,498,502,507,511],{"type":45,"tag":182,"props":481,"children":482},{"style":189},[483],{"type":51,"value":484},"    \"",{"type":45,"tag":182,"props":486,"children":487},{"style":421},[488],{"type":51,"value":489},"type",{"type":45,"tag":182,"props":491,"children":492},{"style":189},[493],{"type":51,"value":212},{"type":45,"tag":182,"props":495,"children":496},{"style":189},[497],{"type":51,"value":217},{"type":45,"tag":182,"props":499,"children":500},{"style":189},[501],{"type":51,"value":222},{"type":45,"tag":182,"props":503,"children":504},{"style":225},[505],{"type":51,"value":506},"node",{"type":45,"tag":182,"props":508,"children":509},{"style":189},[510],{"type":51,"value":212},{"type":45,"tag":182,"props":512,"children":513},{"style":189},[514],{"type":51,"value":237},{"type":45,"tag":182,"props":516,"children":518},{"class":184,"line":517},10,[519,523,528,532,536,540,545,549],{"type":45,"tag":182,"props":520,"children":521},{"style":189},[522],{"type":51,"value":484},{"type":45,"tag":182,"props":524,"children":525},{"style":421},[526],{"type":51,"value":527},"entry_point",{"type":45,"tag":182,"props":529,"children":530},{"style":189},[531],{"type":51,"value":212},{"type":45,"tag":182,"props":533,"children":534},{"style":189},[535],{"type":51,"value":217},{"type":45,"tag":182,"props":537,"children":538},{"style":189},[539],{"type":51,"value":222},{"type":45,"tag":182,"props":541,"children":542},{"style":225},[543],{"type":51,"value":544},"server\u002Findex.js",{"type":45,"tag":182,"props":546,"children":547},{"style":189},[548],{"type":51,"value":212},{"type":45,"tag":182,"props":550,"children":551},{"style":189},[552],{"type":51,"value":237},{"type":45,"tag":182,"props":554,"children":556},{"class":184,"line":555},11,[557,561,566,570,574],{"type":45,"tag":182,"props":558,"children":559},{"style":189},[560],{"type":51,"value":484},{"type":45,"tag":182,"props":562,"children":563},{"style":421},[564],{"type":51,"value":565},"mcp_config",{"type":45,"tag":182,"props":567,"children":568},{"style":189},[569],{"type":51,"value":212},{"type":45,"tag":182,"props":571,"children":572},{"style":189},[573],{"type":51,"value":217},{"type":45,"tag":182,"props":575,"children":576},{"style":189},[577],{"type":51,"value":475},{"type":45,"tag":182,"props":579,"children":581},{"class":184,"line":580},12,[582,587,593,597,601,605,609,613],{"type":45,"tag":182,"props":583,"children":584},{"style":189},[585],{"type":51,"value":586},"      \"",{"type":45,"tag":182,"props":588,"children":590},{"style":589},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[591],{"type":51,"value":592},"command",{"type":45,"tag":182,"props":594,"children":595},{"style":189},[596],{"type":51,"value":212},{"type":45,"tag":182,"props":598,"children":599},{"style":189},[600],{"type":51,"value":217},{"type":45,"tag":182,"props":602,"children":603},{"style":189},[604],{"type":51,"value":222},{"type":45,"tag":182,"props":606,"children":607},{"style":225},[608],{"type":51,"value":506},{"type":45,"tag":182,"props":610,"children":611},{"style":189},[612],{"type":51,"value":212},{"type":45,"tag":182,"props":614,"children":615},{"style":189},[616],{"type":51,"value":237},{"type":45,"tag":182,"props":618,"children":620},{"class":184,"line":619},13,[621,625,630,634,638,643,647,652,656],{"type":45,"tag":182,"props":622,"children":623},{"style":189},[624],{"type":51,"value":586},{"type":45,"tag":182,"props":626,"children":627},{"style":589},[628],{"type":51,"value":629},"args",{"type":45,"tag":182,"props":631,"children":632},{"style":189},[633],{"type":51,"value":212},{"type":45,"tag":182,"props":635,"children":636},{"style":189},[637],{"type":51,"value":217},{"type":45,"tag":182,"props":639,"children":640},{"style":189},[641],{"type":51,"value":642}," [",{"type":45,"tag":182,"props":644,"children":645},{"style":189},[646],{"type":51,"value":212},{"type":45,"tag":182,"props":648,"children":649},{"style":225},[650],{"type":51,"value":651},"${__dirname}\u002Fserver\u002Findex.js",{"type":45,"tag":182,"props":653,"children":654},{"style":189},[655],{"type":51,"value":212},{"type":45,"tag":182,"props":657,"children":658},{"style":189},[659],{"type":51,"value":660},"],\n",{"type":45,"tag":182,"props":662,"children":664},{"class":184,"line":663},14,[665,669,674,678,682],{"type":45,"tag":182,"props":666,"children":667},{"style":189},[668],{"type":51,"value":586},{"type":45,"tag":182,"props":670,"children":671},{"style":589},[672],{"type":51,"value":673},"env",{"type":45,"tag":182,"props":675,"children":676},{"style":189},[677],{"type":51,"value":212},{"type":45,"tag":182,"props":679,"children":680},{"style":189},[681],{"type":51,"value":217},{"type":45,"tag":182,"props":683,"children":684},{"style":189},[685],{"type":51,"value":475},{"type":45,"tag":182,"props":687,"children":689},{"class":184,"line":688},15,[690,695,701,705,709,713,718],{"type":45,"tag":182,"props":691,"children":692},{"style":189},[693],{"type":51,"value":694},"        \"",{"type":45,"tag":182,"props":696,"children":698},{"style":697},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[699],{"type":51,"value":700},"ROOT_DIR",{"type":45,"tag":182,"props":702,"children":703},{"style":189},[704],{"type":51,"value":212},{"type":45,"tag":182,"props":706,"children":707},{"style":189},[708],{"type":51,"value":217},{"type":45,"tag":182,"props":710,"children":711},{"style":189},[712],{"type":51,"value":222},{"type":45,"tag":182,"props":714,"children":715},{"style":225},[716],{"type":51,"value":717},"${user_config.rootDir}",{"type":45,"tag":182,"props":719,"children":720},{"style":189},[721],{"type":51,"value":722},"\"\n",{"type":45,"tag":182,"props":724,"children":726},{"class":184,"line":725},16,[727],{"type":45,"tag":182,"props":728,"children":729},{"style":189},[730],{"type":51,"value":731},"      }\n",{"type":45,"tag":182,"props":733,"children":735},{"class":184,"line":734},17,[736],{"type":45,"tag":182,"props":737,"children":738},{"style":189},[739],{"type":51,"value":740},"    }\n",{"type":45,"tag":182,"props":742,"children":744},{"class":184,"line":743},18,[745],{"type":45,"tag":182,"props":746,"children":747},{"style":189},[748],{"type":51,"value":749},"  },\n",{"type":45,"tag":182,"props":751,"children":753},{"class":184,"line":752},19,[754,758,763,767,771],{"type":45,"tag":182,"props":755,"children":756},{"style":189},[757],{"type":51,"value":201},{"type":45,"tag":182,"props":759,"children":760},{"style":204},[761],{"type":51,"value":762},"user_config",{"type":45,"tag":182,"props":764,"children":765},{"style":189},[766],{"type":51,"value":212},{"type":45,"tag":182,"props":768,"children":769},{"style":189},[770],{"type":51,"value":217},{"type":45,"tag":182,"props":772,"children":773},{"style":189},[774],{"type":51,"value":475},{"type":45,"tag":182,"props":776,"children":778},{"class":184,"line":777},20,[779,783,788,792,796],{"type":45,"tag":182,"props":780,"children":781},{"style":189},[782],{"type":51,"value":484},{"type":45,"tag":182,"props":784,"children":785},{"style":421},[786],{"type":51,"value":787},"rootDir",{"type":45,"tag":182,"props":789,"children":790},{"style":189},[791],{"type":51,"value":212},{"type":45,"tag":182,"props":793,"children":794},{"style":189},[795],{"type":51,"value":217},{"type":45,"tag":182,"props":797,"children":798},{"style":189},[799],{"type":51,"value":475},{"type":45,"tag":182,"props":801,"children":803},{"class":184,"line":802},21,[804,808,812,816,820,824,829,833],{"type":45,"tag":182,"props":805,"children":806},{"style":189},[807],{"type":51,"value":586},{"type":45,"tag":182,"props":809,"children":810},{"style":589},[811],{"type":51,"value":489},{"type":45,"tag":182,"props":813,"children":814},{"style":189},[815],{"type":51,"value":212},{"type":45,"tag":182,"props":817,"children":818},{"style":189},[819],{"type":51,"value":217},{"type":45,"tag":182,"props":821,"children":822},{"style":189},[823],{"type":51,"value":222},{"type":45,"tag":182,"props":825,"children":826},{"style":225},[827],{"type":51,"value":828},"directory",{"type":45,"tag":182,"props":830,"children":831},{"style":189},[832],{"type":51,"value":212},{"type":45,"tag":182,"props":834,"children":835},{"style":189},[836],{"type":51,"value":237},{"type":45,"tag":182,"props":838,"children":840},{"class":184,"line":839},22,[841,845,850,854,858,862,867,871],{"type":45,"tag":182,"props":842,"children":843},{"style":189},[844],{"type":51,"value":586},{"type":45,"tag":182,"props":846,"children":847},{"style":589},[848],{"type":51,"value":849},"title",{"type":45,"tag":182,"props":851,"children":852},{"style":189},[853],{"type":51,"value":212},{"type":45,"tag":182,"props":855,"children":856},{"style":189},[857],{"type":51,"value":217},{"type":45,"tag":182,"props":859,"children":860},{"style":189},[861],{"type":51,"value":222},{"type":45,"tag":182,"props":863,"children":864},{"style":225},[865],{"type":51,"value":866},"Root directory",{"type":45,"tag":182,"props":868,"children":869},{"style":189},[870],{"type":51,"value":212},{"type":45,"tag":182,"props":872,"children":873},{"style":189},[874],{"type":51,"value":237},{"type":45,"tag":182,"props":876,"children":878},{"class":184,"line":877},23,[879,883,887,891,895,899,904,908],{"type":45,"tag":182,"props":880,"children":881},{"style":189},[882],{"type":51,"value":586},{"type":45,"tag":182,"props":884,"children":885},{"style":589},[886],{"type":51,"value":363},{"type":45,"tag":182,"props":888,"children":889},{"style":189},[890],{"type":51,"value":212},{"type":45,"tag":182,"props":892,"children":893},{"style":189},[894],{"type":51,"value":217},{"type":45,"tag":182,"props":896,"children":897},{"style":189},[898],{"type":51,"value":222},{"type":45,"tag":182,"props":900,"children":901},{"style":225},[902],{"type":51,"value":903},"Directory to expose. Defaults to ~\u002FDocuments.",{"type":45,"tag":182,"props":905,"children":906},{"style":189},[907],{"type":51,"value":212},{"type":45,"tag":182,"props":909,"children":910},{"style":189},[911],{"type":51,"value":237},{"type":45,"tag":182,"props":913,"children":915},{"class":184,"line":914},24,[916,920,925,929,933,937,942,946],{"type":45,"tag":182,"props":917,"children":918},{"style":189},[919],{"type":51,"value":586},{"type":45,"tag":182,"props":921,"children":922},{"style":589},[923],{"type":51,"value":924},"default",{"type":45,"tag":182,"props":926,"children":927},{"style":189},[928],{"type":51,"value":212},{"type":45,"tag":182,"props":930,"children":931},{"style":189},[932],{"type":51,"value":217},{"type":45,"tag":182,"props":934,"children":935},{"style":189},[936],{"type":51,"value":222},{"type":45,"tag":182,"props":938,"children":939},{"style":225},[940],{"type":51,"value":941},"${HOME}\u002FDocuments",{"type":45,"tag":182,"props":943,"children":944},{"style":189},[945],{"type":51,"value":212},{"type":45,"tag":182,"props":947,"children":948},{"style":189},[949],{"type":51,"value":237},{"type":45,"tag":182,"props":951,"children":953},{"class":184,"line":952},25,[954,958,963,967,971],{"type":45,"tag":182,"props":955,"children":956},{"style":189},[957],{"type":51,"value":586},{"type":45,"tag":182,"props":959,"children":960},{"style":589},[961],{"type":51,"value":962},"required",{"type":45,"tag":182,"props":964,"children":965},{"style":189},[966],{"type":51,"value":212},{"type":45,"tag":182,"props":968,"children":969},{"style":189},[970],{"type":51,"value":217},{"type":45,"tag":182,"props":972,"children":973},{"style":189},[974],{"type":51,"value":975}," true\n",{"type":45,"tag":182,"props":977,"children":979},{"class":184,"line":978},26,[980],{"type":45,"tag":182,"props":981,"children":982},{"style":189},[983],{"type":51,"value":740},{"type":45,"tag":182,"props":985,"children":987},{"class":184,"line":986},27,[988],{"type":45,"tag":182,"props":989,"children":990},{"style":189},[991],{"type":51,"value":749},{"type":45,"tag":182,"props":993,"children":995},{"class":184,"line":994},28,[996,1000,1005,1009,1013],{"type":45,"tag":182,"props":997,"children":998},{"style":189},[999],{"type":51,"value":201},{"type":45,"tag":182,"props":1001,"children":1002},{"style":204},[1003],{"type":51,"value":1004},"compatibility",{"type":45,"tag":182,"props":1006,"children":1007},{"style":189},[1008],{"type":51,"value":212},{"type":45,"tag":182,"props":1010,"children":1011},{"style":189},[1012],{"type":51,"value":217},{"type":45,"tag":182,"props":1014,"children":1015},{"style":189},[1016],{"type":51,"value":475},{"type":45,"tag":182,"props":1018,"children":1020},{"class":184,"line":1019},29,[1021,1025,1030,1034,1038,1042,1047,1051],{"type":45,"tag":182,"props":1022,"children":1023},{"style":189},[1024],{"type":51,"value":484},{"type":45,"tag":182,"props":1026,"children":1027},{"style":421},[1028],{"type":51,"value":1029},"claude_desktop",{"type":45,"tag":182,"props":1031,"children":1032},{"style":189},[1033],{"type":51,"value":212},{"type":45,"tag":182,"props":1035,"children":1036},{"style":189},[1037],{"type":51,"value":217},{"type":45,"tag":182,"props":1039,"children":1040},{"style":189},[1041],{"type":51,"value":222},{"type":45,"tag":182,"props":1043,"children":1044},{"style":225},[1045],{"type":51,"value":1046},">=1.0.0",{"type":45,"tag":182,"props":1048,"children":1049},{"style":189},[1050],{"type":51,"value":212},{"type":45,"tag":182,"props":1052,"children":1053},{"style":189},[1054],{"type":51,"value":237},{"type":45,"tag":182,"props":1056,"children":1058},{"class":184,"line":1057},30,[1059,1063,1068,1072,1076,1080,1084,1089,1093,1098,1102,1107,1111,1115,1119,1124,1128],{"type":45,"tag":182,"props":1060,"children":1061},{"style":189},[1062],{"type":51,"value":484},{"type":45,"tag":182,"props":1064,"children":1065},{"style":421},[1066],{"type":51,"value":1067},"platforms",{"type":45,"tag":182,"props":1069,"children":1070},{"style":189},[1071],{"type":51,"value":212},{"type":45,"tag":182,"props":1073,"children":1074},{"style":189},[1075],{"type":51,"value":217},{"type":45,"tag":182,"props":1077,"children":1078},{"style":189},[1079],{"type":51,"value":642},{"type":45,"tag":182,"props":1081,"children":1082},{"style":189},[1083],{"type":51,"value":212},{"type":45,"tag":182,"props":1085,"children":1086},{"style":225},[1087],{"type":51,"value":1088},"darwin",{"type":45,"tag":182,"props":1090,"children":1091},{"style":189},[1092],{"type":51,"value":212},{"type":45,"tag":182,"props":1094,"children":1095},{"style":189},[1096],{"type":51,"value":1097},",",{"type":45,"tag":182,"props":1099,"children":1100},{"style":189},[1101],{"type":51,"value":222},{"type":45,"tag":182,"props":1103,"children":1104},{"style":225},[1105],{"type":51,"value":1106},"win32",{"type":45,"tag":182,"props":1108,"children":1109},{"style":189},[1110],{"type":51,"value":212},{"type":45,"tag":182,"props":1112,"children":1113},{"style":189},[1114],{"type":51,"value":1097},{"type":45,"tag":182,"props":1116,"children":1117},{"style":189},[1118],{"type":51,"value":222},{"type":45,"tag":182,"props":1120,"children":1121},{"style":225},[1122],{"type":51,"value":1123},"linux",{"type":45,"tag":182,"props":1125,"children":1126},{"style":189},[1127],{"type":51,"value":212},{"type":45,"tag":182,"props":1129,"children":1130},{"style":189},[1131],{"type":51,"value":1132},"]\n",{"type":45,"tag":182,"props":1134,"children":1136},{"class":184,"line":1135},31,[1137],{"type":45,"tag":182,"props":1138,"children":1139},{"style":189},[1140],{"type":51,"value":1141},"  }\n",{"type":45,"tag":182,"props":1143,"children":1145},{"class":184,"line":1144},32,[1146],{"type":45,"tag":182,"props":1147,"children":1148},{"style":189},[1149],{"type":51,"value":1150},"}\n",{"type":45,"tag":54,"props":1152,"children":1153},{},[1154,1163,1165,1170,1172,1178,1180,1186,1188,1193],{"type":45,"tag":60,"props":1155,"children":1156},{},[1157],{"type":45,"tag":104,"props":1158,"children":1160},{"className":1159},[],[1161],{"type":51,"value":1162},"server.type",{"type":51,"value":1164}," — ",{"type":45,"tag":104,"props":1166,"children":1168},{"className":1167},[],[1169],{"type":51,"value":506},{"type":51,"value":1171},", ",{"type":45,"tag":104,"props":1173,"children":1175},{"className":1174},[],[1176],{"type":51,"value":1177},"python",{"type":51,"value":1179},", or ",{"type":45,"tag":104,"props":1181,"children":1183},{"className":1182},[],[1184],{"type":51,"value":1185},"binary",{"type":51,"value":1187},". Informational; the actual launch comes from ",{"type":45,"tag":104,"props":1189,"children":1191},{"className":1190},[],[1192],{"type":51,"value":565},{"type":51,"value":92},{"type":45,"tag":54,"props":1195,"children":1196},{},[1197,1206,1208,1214,1216,1222,1224,1229,1231,1236],{"type":45,"tag":60,"props":1198,"children":1199},{},[1200],{"type":45,"tag":104,"props":1201,"children":1203},{"className":1202},[],[1204],{"type":51,"value":1205},"server.mcp_config",{"type":51,"value":1207}," — the literal command\u002Fargs\u002Fenv to spawn. Use ",{"type":45,"tag":104,"props":1209,"children":1211},{"className":1210},[],[1212],{"type":51,"value":1213},"${__dirname}",{"type":51,"value":1215}," for bundle-relative paths and ",{"type":45,"tag":104,"props":1217,"children":1219},{"className":1218},[],[1220],{"type":51,"value":1221},"${user_config.\u003Ckey>}",{"type":51,"value":1223}," to substitute install-time config. ",{"type":45,"tag":60,"props":1225,"children":1226},{},[1227],{"type":51,"value":1228},"There's no auto-prefix",{"type":51,"value":1230}," — the env var names your server reads are exactly what you put in ",{"type":45,"tag":104,"props":1232,"children":1234},{"className":1233},[],[1235],{"type":51,"value":673},{"type":51,"value":92},{"type":45,"tag":54,"props":1238,"children":1239},{},[1240,1248,1250,1256,1258,1264,1266,1272],{"type":45,"tag":60,"props":1241,"children":1242},{},[1243],{"type":45,"tag":104,"props":1244,"children":1246},{"className":1245},[],[1247],{"type":51,"value":762},{"type":51,"value":1249}," — install-time settings surfaced in the host's UI. ",{"type":45,"tag":104,"props":1251,"children":1253},{"className":1252},[],[1254],{"type":51,"value":1255},"type: \"directory\"",{"type":51,"value":1257}," renders a native folder picker. ",{"type":45,"tag":104,"props":1259,"children":1261},{"className":1260},[],[1262],{"type":51,"value":1263},"sensitive: true",{"type":51,"value":1265}," stores in OS keychain. See ",{"type":45,"tag":104,"props":1267,"children":1269},{"className":1268},[],[1270],{"type":51,"value":1271},"references\u002Fmanifest-schema.md",{"type":51,"value":1273}," for all fields.",{"type":45,"tag":113,"props":1275,"children":1276},{},[],{"type":45,"tag":117,"props":1278,"children":1280},{"id":1279},"server-code-same-as-local-stdio",[1281],{"type":51,"value":1282},"Server code: same as local stdio",{"type":45,"tag":54,"props":1284,"children":1285},{},[1286],{"type":51,"value":1287},"The server itself is a standard stdio MCP server. Nothing MCPB-specific in the tool logic.",{"type":45,"tag":124,"props":1289,"children":1293},{"className":1290,"code":1291,"language":1292,"meta":132,"style":132},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { McpServer } from \"@modelcontextprotocol\u002Fsdk\u002Fserver\u002Fmcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol\u002Fsdk\u002Fserver\u002Fstdio.js\";\nimport { z } from \"zod\";\nimport { readFile, readdir } from \"node:fs\u002Fpromises\";\nimport { join } from \"node:path\";\nimport { homedir } from \"node:os\";\n\n\u002F\u002F ROOT_DIR comes from what you put in manifest's server.mcp_config.env — no auto-prefix\nconst ROOT = (process.env.ROOT_DIR ?? join(homedir(), \"Documents\"));\n\nconst server = new McpServer({ name: \"local-files\", version: \"0.1.0\" });\n\nserver.registerTool(\n  \"list_files\",\n  {\n    description: \"List files in a directory under the configured root.\",\n    inputSchema: { path: z.string().default(\".\") },\n    annotations: { readOnlyHint: true },\n  },\n  async ({ path }) => {\n    const entries = await readdir(join(ROOT, path), { withFileTypes: true });\n    const list = entries.map(e => ({ name: e.name, dir: e.isDirectory() }));\n    return { content: [{ type: \"text\", text: JSON.stringify(list, null, 2) }] };\n  },\n);\n\nserver.registerTool(\n  \"read_file\",\n  {\n    description: \"Read a file's contents. Path is relative to the configured root.\",\n    inputSchema: { path: z.string() },\n    annotations: { readOnlyHint: true },\n  },\n  async ({ path }) => {\n    const text = await readFile(join(ROOT, path), \"utf8\");\n    return { content: [{ type: \"text\", text }] };\n  },\n);\n\nconst transport = new StdioServerTransport();\nawait server.connect(transport);\n","typescript",[1294],{"type":45,"tag":104,"props":1295,"children":1296},{"__ignoreMap":132},[1297,1344,1385,1426,1476,1517,1558,1567,1576,1667,1674,1767,1774,1795,1815,1823,1852,1928,1963,1970,2002,2092,2208,2326,2333,2344,2351,2370,2390,2397,2425,2468,2499,2507,2535,2612,2680,2688,2700,2708,2741],{"type":45,"tag":182,"props":1298,"children":1299},{"class":184,"line":185},[1300,1306,1310,1316,1321,1326,1330,1335,1339],{"type":45,"tag":182,"props":1301,"children":1303},{"style":1302},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[1304],{"type":51,"value":1305},"import",{"type":45,"tag":182,"props":1307,"children":1308},{"style":189},[1309],{"type":51,"value":414},{"type":45,"tag":182,"props":1311,"children":1313},{"style":1312},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1314],{"type":51,"value":1315}," McpServer",{"type":45,"tag":182,"props":1317,"children":1318},{"style":189},[1319],{"type":51,"value":1320}," }",{"type":45,"tag":182,"props":1322,"children":1323},{"style":1302},[1324],{"type":51,"value":1325}," from",{"type":45,"tag":182,"props":1327,"children":1328},{"style":189},[1329],{"type":51,"value":222},{"type":45,"tag":182,"props":1331,"children":1332},{"style":225},[1333],{"type":51,"value":1334},"@modelcontextprotocol\u002Fsdk\u002Fserver\u002Fmcp.js",{"type":45,"tag":182,"props":1336,"children":1337},{"style":189},[1338],{"type":51,"value":212},{"type":45,"tag":182,"props":1340,"children":1341},{"style":189},[1342],{"type":51,"value":1343},";\n",{"type":45,"tag":182,"props":1345,"children":1346},{"class":184,"line":195},[1347,1351,1355,1360,1364,1368,1372,1377,1381],{"type":45,"tag":182,"props":1348,"children":1349},{"style":1302},[1350],{"type":51,"value":1305},{"type":45,"tag":182,"props":1352,"children":1353},{"style":189},[1354],{"type":51,"value":414},{"type":45,"tag":182,"props":1356,"children":1357},{"style":1312},[1358],{"type":51,"value":1359}," StdioServerTransport",{"type":45,"tag":182,"props":1361,"children":1362},{"style":189},[1363],{"type":51,"value":1320},{"type":45,"tag":182,"props":1365,"children":1366},{"style":1302},[1367],{"type":51,"value":1325},{"type":45,"tag":182,"props":1369,"children":1370},{"style":189},[1371],{"type":51,"value":222},{"type":45,"tag":182,"props":1373,"children":1374},{"style":225},[1375],{"type":51,"value":1376},"@modelcontextprotocol\u002Fsdk\u002Fserver\u002Fstdio.js",{"type":45,"tag":182,"props":1378,"children":1379},{"style":189},[1380],{"type":51,"value":212},{"type":45,"tag":182,"props":1382,"children":1383},{"style":189},[1384],{"type":51,"value":1343},{"type":45,"tag":182,"props":1386,"children":1387},{"class":184,"line":240},[1388,1392,1396,1401,1405,1409,1413,1418,1422],{"type":45,"tag":182,"props":1389,"children":1390},{"style":1302},[1391],{"type":51,"value":1305},{"type":45,"tag":182,"props":1393,"children":1394},{"style":189},[1395],{"type":51,"value":414},{"type":45,"tag":182,"props":1397,"children":1398},{"style":1312},[1399],{"type":51,"value":1400}," z",{"type":45,"tag":182,"props":1402,"children":1403},{"style":189},[1404],{"type":51,"value":1320},{"type":45,"tag":182,"props":1406,"children":1407},{"style":1302},[1408],{"type":51,"value":1325},{"type":45,"tag":182,"props":1410,"children":1411},{"style":189},[1412],{"type":51,"value":222},{"type":45,"tag":182,"props":1414,"children":1415},{"style":225},[1416],{"type":51,"value":1417},"zod",{"type":45,"tag":182,"props":1419,"children":1420},{"style":189},[1421],{"type":51,"value":212},{"type":45,"tag":182,"props":1423,"children":1424},{"style":189},[1425],{"type":51,"value":1343},{"type":45,"tag":182,"props":1427,"children":1428},{"class":184,"line":278},[1429,1433,1437,1442,1446,1451,1455,1459,1463,1468,1472],{"type":45,"tag":182,"props":1430,"children":1431},{"style":1302},[1432],{"type":51,"value":1305},{"type":45,"tag":182,"props":1434,"children":1435},{"style":189},[1436],{"type":51,"value":414},{"type":45,"tag":182,"props":1438,"children":1439},{"style":1312},[1440],{"type":51,"value":1441}," readFile",{"type":45,"tag":182,"props":1443,"children":1444},{"style":189},[1445],{"type":51,"value":1097},{"type":45,"tag":182,"props":1447,"children":1448},{"style":1312},[1449],{"type":51,"value":1450}," readdir",{"type":45,"tag":182,"props":1452,"children":1453},{"style":189},[1454],{"type":51,"value":1320},{"type":45,"tag":182,"props":1456,"children":1457},{"style":1302},[1458],{"type":51,"value":1325},{"type":45,"tag":182,"props":1460,"children":1461},{"style":189},[1462],{"type":51,"value":222},{"type":45,"tag":182,"props":1464,"children":1465},{"style":225},[1466],{"type":51,"value":1467},"node:fs\u002Fpromises",{"type":45,"tag":182,"props":1469,"children":1470},{"style":189},[1471],{"type":51,"value":212},{"type":45,"tag":182,"props":1473,"children":1474},{"style":189},[1475],{"type":51,"value":1343},{"type":45,"tag":182,"props":1477,"children":1478},{"class":184,"line":316},[1479,1483,1487,1492,1496,1500,1504,1509,1513],{"type":45,"tag":182,"props":1480,"children":1481},{"style":1302},[1482],{"type":51,"value":1305},{"type":45,"tag":182,"props":1484,"children":1485},{"style":189},[1486],{"type":51,"value":414},{"type":45,"tag":182,"props":1488,"children":1489},{"style":1312},[1490],{"type":51,"value":1491}," join",{"type":45,"tag":182,"props":1493,"children":1494},{"style":189},[1495],{"type":51,"value":1320},{"type":45,"tag":182,"props":1497,"children":1498},{"style":1302},[1499],{"type":51,"value":1325},{"type":45,"tag":182,"props":1501,"children":1502},{"style":189},[1503],{"type":51,"value":222},{"type":45,"tag":182,"props":1505,"children":1506},{"style":225},[1507],{"type":51,"value":1508},"node:path",{"type":45,"tag":182,"props":1510,"children":1511},{"style":189},[1512],{"type":51,"value":212},{"type":45,"tag":182,"props":1514,"children":1515},{"style":189},[1516],{"type":51,"value":1343},{"type":45,"tag":182,"props":1518,"children":1519},{"class":184,"line":353},[1520,1524,1528,1533,1537,1541,1545,1550,1554],{"type":45,"tag":182,"props":1521,"children":1522},{"style":1302},[1523],{"type":51,"value":1305},{"type":45,"tag":182,"props":1525,"children":1526},{"style":189},[1527],{"type":51,"value":414},{"type":45,"tag":182,"props":1529,"children":1530},{"style":1312},[1531],{"type":51,"value":1532}," homedir",{"type":45,"tag":182,"props":1534,"children":1535},{"style":189},[1536],{"type":51,"value":1320},{"type":45,"tag":182,"props":1538,"children":1539},{"style":1302},[1540],{"type":51,"value":1325},{"type":45,"tag":182,"props":1542,"children":1543},{"style":189},[1544],{"type":51,"value":222},{"type":45,"tag":182,"props":1546,"children":1547},{"style":225},[1548],{"type":51,"value":1549},"node:os",{"type":45,"tag":182,"props":1551,"children":1552},{"style":189},[1553],{"type":51,"value":212},{"type":45,"tag":182,"props":1555,"children":1556},{"style":189},[1557],{"type":51,"value":1343},{"type":45,"tag":182,"props":1559,"children":1560},{"class":184,"line":391},[1561],{"type":45,"tag":182,"props":1562,"children":1564},{"emptyLinePlaceholder":1563},true,[1565],{"type":51,"value":1566},"\n",{"type":45,"tag":182,"props":1568,"children":1569},{"class":184,"line":452},[1570],{"type":45,"tag":182,"props":1571,"children":1573},{"style":1572},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1574],{"type":51,"value":1575},"\u002F\u002F ROOT_DIR comes from what you put in manifest's server.mcp_config.env — no auto-prefix\n",{"type":45,"tag":182,"props":1577,"children":1578},{"class":184,"line":478},[1579,1584,1589,1594,1599,1603,1607,1611,1616,1621,1626,1631,1636,1641,1645,1649,1654,1658,1663],{"type":45,"tag":182,"props":1580,"children":1581},{"style":204},[1582],{"type":51,"value":1583},"const",{"type":45,"tag":182,"props":1585,"children":1586},{"style":1312},[1587],{"type":51,"value":1588}," ROOT ",{"type":45,"tag":182,"props":1590,"children":1591},{"style":189},[1592],{"type":51,"value":1593},"=",{"type":45,"tag":182,"props":1595,"children":1596},{"style":1312},[1597],{"type":51,"value":1598}," (process",{"type":45,"tag":182,"props":1600,"children":1601},{"style":189},[1602],{"type":51,"value":92},{"type":45,"tag":182,"props":1604,"children":1605},{"style":1312},[1606],{"type":51,"value":673},{"type":45,"tag":182,"props":1608,"children":1609},{"style":189},[1610],{"type":51,"value":92},{"type":45,"tag":182,"props":1612,"children":1613},{"style":1312},[1614],{"type":51,"value":1615},"ROOT_DIR ",{"type":45,"tag":182,"props":1617,"children":1618},{"style":189},[1619],{"type":51,"value":1620},"??",{"type":45,"tag":182,"props":1622,"children":1624},{"style":1623},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[1625],{"type":51,"value":1491},{"type":45,"tag":182,"props":1627,"children":1628},{"style":1312},[1629],{"type":51,"value":1630},"(",{"type":45,"tag":182,"props":1632,"children":1633},{"style":1623},[1634],{"type":51,"value":1635},"homedir",{"type":45,"tag":182,"props":1637,"children":1638},{"style":1312},[1639],{"type":51,"value":1640},"()",{"type":45,"tag":182,"props":1642,"children":1643},{"style":189},[1644],{"type":51,"value":1097},{"type":45,"tag":182,"props":1646,"children":1647},{"style":189},[1648],{"type":51,"value":222},{"type":45,"tag":182,"props":1650,"children":1651},{"style":225},[1652],{"type":51,"value":1653},"Documents",{"type":45,"tag":182,"props":1655,"children":1656},{"style":189},[1657],{"type":51,"value":212},{"type":45,"tag":182,"props":1659,"children":1660},{"style":1312},[1661],{"type":51,"value":1662},"))",{"type":45,"tag":182,"props":1664,"children":1665},{"style":189},[1666],{"type":51,"value":1343},{"type":45,"tag":182,"props":1668,"children":1669},{"class":184,"line":517},[1670],{"type":45,"tag":182,"props":1671,"children":1672},{"emptyLinePlaceholder":1563},[1673],{"type":51,"value":1566},{"type":45,"tag":182,"props":1675,"children":1676},{"class":184,"line":555},[1677,1681,1686,1690,1695,1699,1703,1708,1713,1717,1721,1725,1729,1733,1738,1742,1746,1750,1754,1758,1763],{"type":45,"tag":182,"props":1678,"children":1679},{"style":204},[1680],{"type":51,"value":1583},{"type":45,"tag":182,"props":1682,"children":1683},{"style":1312},[1684],{"type":51,"value":1685}," server ",{"type":45,"tag":182,"props":1687,"children":1688},{"style":189},[1689],{"type":51,"value":1593},{"type":45,"tag":182,"props":1691,"children":1692},{"style":189},[1693],{"type":51,"value":1694}," new",{"type":45,"tag":182,"props":1696,"children":1697},{"style":1623},[1698],{"type":51,"value":1315},{"type":45,"tag":182,"props":1700,"children":1701},{"style":1312},[1702],{"type":51,"value":1630},{"type":45,"tag":182,"props":1704,"children":1705},{"style":189},[1706],{"type":51,"value":1707},"{",{"type":45,"tag":182,"props":1709,"children":1710},{"style":697},[1711],{"type":51,"value":1712}," name",{"type":45,"tag":182,"props":1714,"children":1715},{"style":189},[1716],{"type":51,"value":217},{"type":45,"tag":182,"props":1718,"children":1719},{"style":189},[1720],{"type":51,"value":222},{"type":45,"tag":182,"props":1722,"children":1723},{"style":225},[1724],{"type":51,"value":305},{"type":45,"tag":182,"props":1726,"children":1727},{"style":189},[1728],{"type":51,"value":212},{"type":45,"tag":182,"props":1730,"children":1731},{"style":189},[1732],{"type":51,"value":1097},{"type":45,"tag":182,"props":1734,"children":1735},{"style":697},[1736],{"type":51,"value":1737}," version",{"type":45,"tag":182,"props":1739,"children":1740},{"style":189},[1741],{"type":51,"value":217},{"type":45,"tag":182,"props":1743,"children":1744},{"style":189},[1745],{"type":51,"value":222},{"type":45,"tag":182,"props":1747,"children":1748},{"style":225},[1749],{"type":51,"value":40},{"type":45,"tag":182,"props":1751,"children":1752},{"style":189},[1753],{"type":51,"value":212},{"type":45,"tag":182,"props":1755,"children":1756},{"style":189},[1757],{"type":51,"value":1320},{"type":45,"tag":182,"props":1759,"children":1760},{"style":1312},[1761],{"type":51,"value":1762},")",{"type":45,"tag":182,"props":1764,"children":1765},{"style":189},[1766],{"type":51,"value":1343},{"type":45,"tag":182,"props":1768,"children":1769},{"class":184,"line":580},[1770],{"type":45,"tag":182,"props":1771,"children":1772},{"emptyLinePlaceholder":1563},[1773],{"type":51,"value":1566},{"type":45,"tag":182,"props":1775,"children":1776},{"class":184,"line":619},[1777,1781,1785,1790],{"type":45,"tag":182,"props":1778,"children":1779},{"style":1312},[1780],{"type":51,"value":462},{"type":45,"tag":182,"props":1782,"children":1783},{"style":189},[1784],{"type":51,"value":92},{"type":45,"tag":182,"props":1786,"children":1787},{"style":1623},[1788],{"type":51,"value":1789},"registerTool",{"type":45,"tag":182,"props":1791,"children":1792},{"style":1312},[1793],{"type":51,"value":1794},"(\n",{"type":45,"tag":182,"props":1796,"children":1797},{"class":184,"line":663},[1798,1802,1807,1811],{"type":45,"tag":182,"props":1799,"children":1800},{"style":189},[1801],{"type":51,"value":201},{"type":45,"tag":182,"props":1803,"children":1804},{"style":225},[1805],{"type":51,"value":1806},"list_files",{"type":45,"tag":182,"props":1808,"children":1809},{"style":189},[1810],{"type":51,"value":212},{"type":45,"tag":182,"props":1812,"children":1813},{"style":189},[1814],{"type":51,"value":237},{"type":45,"tag":182,"props":1816,"children":1817},{"class":184,"line":688},[1818],{"type":45,"tag":182,"props":1819,"children":1820},{"style":189},[1821],{"type":51,"value":1822},"  {\n",{"type":45,"tag":182,"props":1824,"children":1825},{"class":184,"line":725},[1826,1831,1835,1839,1844,1848],{"type":45,"tag":182,"props":1827,"children":1828},{"style":697},[1829],{"type":51,"value":1830},"    description",{"type":45,"tag":182,"props":1832,"children":1833},{"style":189},[1834],{"type":51,"value":217},{"type":45,"tag":182,"props":1836,"children":1837},{"style":189},[1838],{"type":51,"value":222},{"type":45,"tag":182,"props":1840,"children":1841},{"style":225},[1842],{"type":51,"value":1843},"List files in a directory under the configured root.",{"type":45,"tag":182,"props":1845,"children":1846},{"style":189},[1847],{"type":51,"value":212},{"type":45,"tag":182,"props":1849,"children":1850},{"style":189},[1851],{"type":51,"value":237},{"type":45,"tag":182,"props":1853,"children":1854},{"class":184,"line":734},[1855,1860,1864,1868,1873,1877,1881,1885,1890,1894,1898,1902,1906,1910,1914,1918,1923],{"type":45,"tag":182,"props":1856,"children":1857},{"style":697},[1858],{"type":51,"value":1859},"    inputSchema",{"type":45,"tag":182,"props":1861,"children":1862},{"style":189},[1863],{"type":51,"value":217},{"type":45,"tag":182,"props":1865,"children":1866},{"style":189},[1867],{"type":51,"value":414},{"type":45,"tag":182,"props":1869,"children":1870},{"style":697},[1871],{"type":51,"value":1872}," path",{"type":45,"tag":182,"props":1874,"children":1875},{"style":189},[1876],{"type":51,"value":217},{"type":45,"tag":182,"props":1878,"children":1879},{"style":1312},[1880],{"type":51,"value":1400},{"type":45,"tag":182,"props":1882,"children":1883},{"style":189},[1884],{"type":51,"value":92},{"type":45,"tag":182,"props":1886,"children":1887},{"style":1623},[1888],{"type":51,"value":1889},"string",{"type":45,"tag":182,"props":1891,"children":1892},{"style":1312},[1893],{"type":51,"value":1640},{"type":45,"tag":182,"props":1895,"children":1896},{"style":189},[1897],{"type":51,"value":92},{"type":45,"tag":182,"props":1899,"children":1900},{"style":1623},[1901],{"type":51,"value":924},{"type":45,"tag":182,"props":1903,"children":1904},{"style":1312},[1905],{"type":51,"value":1630},{"type":45,"tag":182,"props":1907,"children":1908},{"style":189},[1909],{"type":51,"value":212},{"type":45,"tag":182,"props":1911,"children":1912},{"style":225},[1913],{"type":51,"value":92},{"type":45,"tag":182,"props":1915,"children":1916},{"style":189},[1917],{"type":51,"value":212},{"type":45,"tag":182,"props":1919,"children":1920},{"style":1312},[1921],{"type":51,"value":1922},") ",{"type":45,"tag":182,"props":1924,"children":1925},{"style":189},[1926],{"type":51,"value":1927},"},\n",{"type":45,"tag":182,"props":1929,"children":1930},{"class":184,"line":743},[1931,1936,1940,1944,1949,1953,1959],{"type":45,"tag":182,"props":1932,"children":1933},{"style":697},[1934],{"type":51,"value":1935},"    annotations",{"type":45,"tag":182,"props":1937,"children":1938},{"style":189},[1939],{"type":51,"value":217},{"type":45,"tag":182,"props":1941,"children":1942},{"style":189},[1943],{"type":51,"value":414},{"type":45,"tag":182,"props":1945,"children":1946},{"style":697},[1947],{"type":51,"value":1948}," readOnlyHint",{"type":45,"tag":182,"props":1950,"children":1951},{"style":189},[1952],{"type":51,"value":217},{"type":45,"tag":182,"props":1954,"children":1956},{"style":1955},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[1957],{"type":51,"value":1958}," true",{"type":45,"tag":182,"props":1960,"children":1961},{"style":189},[1962],{"type":51,"value":449},{"type":45,"tag":182,"props":1964,"children":1965},{"class":184,"line":752},[1966],{"type":45,"tag":182,"props":1967,"children":1968},{"style":189},[1969],{"type":51,"value":749},{"type":45,"tag":182,"props":1971,"children":1972},{"class":184,"line":777},[1973,1978,1983,1988,1993,1998],{"type":45,"tag":182,"props":1974,"children":1975},{"style":204},[1976],{"type":51,"value":1977},"  async",{"type":45,"tag":182,"props":1979,"children":1980},{"style":189},[1981],{"type":51,"value":1982}," ({",{"type":45,"tag":182,"props":1984,"children":1986},{"style":1985},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[1987],{"type":51,"value":1872},{"type":45,"tag":182,"props":1989,"children":1990},{"style":189},[1991],{"type":51,"value":1992}," })",{"type":45,"tag":182,"props":1994,"children":1995},{"style":204},[1996],{"type":51,"value":1997}," =>",{"type":45,"tag":182,"props":1999,"children":2000},{"style":189},[2001],{"type":51,"value":475},{"type":45,"tag":182,"props":2003,"children":2004},{"class":184,"line":802},[2005,2010,2015,2020,2025,2029,2033,2038,2042,2047,2051,2055,2059,2063,2067,2072,2076,2080,2084,2088],{"type":45,"tag":182,"props":2006,"children":2007},{"style":204},[2008],{"type":51,"value":2009},"    const",{"type":45,"tag":182,"props":2011,"children":2012},{"style":1312},[2013],{"type":51,"value":2014}," entries",{"type":45,"tag":182,"props":2016,"children":2017},{"style":189},[2018],{"type":51,"value":2019}," =",{"type":45,"tag":182,"props":2021,"children":2022},{"style":1302},[2023],{"type":51,"value":2024}," await",{"type":45,"tag":182,"props":2026,"children":2027},{"style":1623},[2028],{"type":51,"value":1450},{"type":45,"tag":182,"props":2030,"children":2031},{"style":697},[2032],{"type":51,"value":1630},{"type":45,"tag":182,"props":2034,"children":2035},{"style":1623},[2036],{"type":51,"value":2037},"join",{"type":45,"tag":182,"props":2039,"children":2040},{"style":697},[2041],{"type":51,"value":1630},{"type":45,"tag":182,"props":2043,"children":2044},{"style":1312},[2045],{"type":51,"value":2046},"ROOT",{"type":45,"tag":182,"props":2048,"children":2049},{"style":189},[2050],{"type":51,"value":1097},{"type":45,"tag":182,"props":2052,"children":2053},{"style":1312},[2054],{"type":51,"value":1872},{"type":45,"tag":182,"props":2056,"children":2057},{"style":697},[2058],{"type":51,"value":1762},{"type":45,"tag":182,"props":2060,"children":2061},{"style":189},[2062],{"type":51,"value":1097},{"type":45,"tag":182,"props":2064,"children":2065},{"style":189},[2066],{"type":51,"value":414},{"type":45,"tag":182,"props":2068,"children":2069},{"style":697},[2070],{"type":51,"value":2071}," withFileTypes",{"type":45,"tag":182,"props":2073,"children":2074},{"style":189},[2075],{"type":51,"value":217},{"type":45,"tag":182,"props":2077,"children":2078},{"style":1955},[2079],{"type":51,"value":1958},{"type":45,"tag":182,"props":2081,"children":2082},{"style":189},[2083],{"type":51,"value":1320},{"type":45,"tag":182,"props":2085,"children":2086},{"style":697},[2087],{"type":51,"value":1762},{"type":45,"tag":182,"props":2089,"children":2090},{"style":189},[2091],{"type":51,"value":1343},{"type":45,"tag":182,"props":2093,"children":2094},{"class":184,"line":839},[2095,2099,2104,2108,2112,2116,2121,2125,2130,2134,2139,2143,2147,2151,2156,2160,2164,2168,2173,2177,2181,2185,2190,2195,2200,2204],{"type":45,"tag":182,"props":2096,"children":2097},{"style":204},[2098],{"type":51,"value":2009},{"type":45,"tag":182,"props":2100,"children":2101},{"style":1312},[2102],{"type":51,"value":2103}," list",{"type":45,"tag":182,"props":2105,"children":2106},{"style":189},[2107],{"type":51,"value":2019},{"type":45,"tag":182,"props":2109,"children":2110},{"style":1312},[2111],{"type":51,"value":2014},{"type":45,"tag":182,"props":2113,"children":2114},{"style":189},[2115],{"type":51,"value":92},{"type":45,"tag":182,"props":2117,"children":2118},{"style":1623},[2119],{"type":51,"value":2120},"map",{"type":45,"tag":182,"props":2122,"children":2123},{"style":697},[2124],{"type":51,"value":1630},{"type":45,"tag":182,"props":2126,"children":2127},{"style":1985},[2128],{"type":51,"value":2129},"e",{"type":45,"tag":182,"props":2131,"children":2132},{"style":204},[2133],{"type":51,"value":1997},{"type":45,"tag":182,"props":2135,"children":2136},{"style":697},[2137],{"type":51,"value":2138}," (",{"type":45,"tag":182,"props":2140,"children":2141},{"style":189},[2142],{"type":51,"value":1707},{"type":45,"tag":182,"props":2144,"children":2145},{"style":697},[2146],{"type":51,"value":1712},{"type":45,"tag":182,"props":2148,"children":2149},{"style":189},[2150],{"type":51,"value":217},{"type":45,"tag":182,"props":2152,"children":2153},{"style":1312},[2154],{"type":51,"value":2155}," e",{"type":45,"tag":182,"props":2157,"children":2158},{"style":189},[2159],{"type":51,"value":92},{"type":45,"tag":182,"props":2161,"children":2162},{"style":1312},[2163],{"type":51,"value":288},{"type":45,"tag":182,"props":2165,"children":2166},{"style":189},[2167],{"type":51,"value":1097},{"type":45,"tag":182,"props":2169,"children":2170},{"style":697},[2171],{"type":51,"value":2172}," dir",{"type":45,"tag":182,"props":2174,"children":2175},{"style":189},[2176],{"type":51,"value":217},{"type":45,"tag":182,"props":2178,"children":2179},{"style":1312},[2180],{"type":51,"value":2155},{"type":45,"tag":182,"props":2182,"children":2183},{"style":189},[2184],{"type":51,"value":92},{"type":45,"tag":182,"props":2186,"children":2187},{"style":1623},[2188],{"type":51,"value":2189},"isDirectory",{"type":45,"tag":182,"props":2191,"children":2192},{"style":697},[2193],{"type":51,"value":2194},"() ",{"type":45,"tag":182,"props":2196,"children":2197},{"style":189},[2198],{"type":51,"value":2199},"}",{"type":45,"tag":182,"props":2201,"children":2202},{"style":697},[2203],{"type":51,"value":1662},{"type":45,"tag":182,"props":2205,"children":2206},{"style":189},[2207],{"type":51,"value":1343},{"type":45,"tag":182,"props":2209,"children":2210},{"class":184,"line":877},[2211,2216,2220,2225,2229,2233,2237,2242,2246,2250,2254,2258,2262,2267,2271,2276,2280,2285,2289,2294,2298,2303,2308,2312,2316,2321],{"type":45,"tag":182,"props":2212,"children":2213},{"style":1302},[2214],{"type":51,"value":2215},"    return",{"type":45,"tag":182,"props":2217,"children":2218},{"style":189},[2219],{"type":51,"value":414},{"type":45,"tag":182,"props":2221,"children":2222},{"style":697},[2223],{"type":51,"value":2224}," content",{"type":45,"tag":182,"props":2226,"children":2227},{"style":189},[2228],{"type":51,"value":217},{"type":45,"tag":182,"props":2230,"children":2231},{"style":697},[2232],{"type":51,"value":642},{"type":45,"tag":182,"props":2234,"children":2235},{"style":189},[2236],{"type":51,"value":1707},{"type":45,"tag":182,"props":2238,"children":2239},{"style":697},[2240],{"type":51,"value":2241}," type",{"type":45,"tag":182,"props":2243,"children":2244},{"style":189},[2245],{"type":51,"value":217},{"type":45,"tag":182,"props":2247,"children":2248},{"style":189},[2249],{"type":51,"value":222},{"type":45,"tag":182,"props":2251,"children":2252},{"style":225},[2253],{"type":51,"value":51},{"type":45,"tag":182,"props":2255,"children":2256},{"style":189},[2257],{"type":51,"value":212},{"type":45,"tag":182,"props":2259,"children":2260},{"style":189},[2261],{"type":51,"value":1097},{"type":45,"tag":182,"props":2263,"children":2264},{"style":697},[2265],{"type":51,"value":2266}," text",{"type":45,"tag":182,"props":2268,"children":2269},{"style":189},[2270],{"type":51,"value":217},{"type":45,"tag":182,"props":2272,"children":2273},{"style":1312},[2274],{"type":51,"value":2275}," JSON",{"type":45,"tag":182,"props":2277,"children":2278},{"style":189},[2279],{"type":51,"value":92},{"type":45,"tag":182,"props":2281,"children":2282},{"style":1623},[2283],{"type":51,"value":2284},"stringify",{"type":45,"tag":182,"props":2286,"children":2287},{"style":697},[2288],{"type":51,"value":1630},{"type":45,"tag":182,"props":2290,"children":2291},{"style":1312},[2292],{"type":51,"value":2293},"list",{"type":45,"tag":182,"props":2295,"children":2296},{"style":189},[2297],{"type":51,"value":1097},{"type":45,"tag":182,"props":2299,"children":2300},{"style":189},[2301],{"type":51,"value":2302}," null,",{"type":45,"tag":182,"props":2304,"children":2305},{"style":589},[2306],{"type":51,"value":2307}," 2",{"type":45,"tag":182,"props":2309,"children":2310},{"style":697},[2311],{"type":51,"value":1922},{"type":45,"tag":182,"props":2313,"children":2314},{"style":189},[2315],{"type":51,"value":2199},{"type":45,"tag":182,"props":2317,"children":2318},{"style":697},[2319],{"type":51,"value":2320},"] ",{"type":45,"tag":182,"props":2322,"children":2323},{"style":189},[2324],{"type":51,"value":2325},"};\n",{"type":45,"tag":182,"props":2327,"children":2328},{"class":184,"line":914},[2329],{"type":45,"tag":182,"props":2330,"children":2331},{"style":189},[2332],{"type":51,"value":749},{"type":45,"tag":182,"props":2334,"children":2335},{"class":184,"line":952},[2336,2340],{"type":45,"tag":182,"props":2337,"children":2338},{"style":1312},[2339],{"type":51,"value":1762},{"type":45,"tag":182,"props":2341,"children":2342},{"style":189},[2343],{"type":51,"value":1343},{"type":45,"tag":182,"props":2345,"children":2346},{"class":184,"line":978},[2347],{"type":45,"tag":182,"props":2348,"children":2349},{"emptyLinePlaceholder":1563},[2350],{"type":51,"value":1566},{"type":45,"tag":182,"props":2352,"children":2353},{"class":184,"line":986},[2354,2358,2362,2366],{"type":45,"tag":182,"props":2355,"children":2356},{"style":1312},[2357],{"type":51,"value":462},{"type":45,"tag":182,"props":2359,"children":2360},{"style":189},[2361],{"type":51,"value":92},{"type":45,"tag":182,"props":2363,"children":2364},{"style":1623},[2365],{"type":51,"value":1789},{"type":45,"tag":182,"props":2367,"children":2368},{"style":1312},[2369],{"type":51,"value":1794},{"type":45,"tag":182,"props":2371,"children":2372},{"class":184,"line":994},[2373,2377,2382,2386],{"type":45,"tag":182,"props":2374,"children":2375},{"style":189},[2376],{"type":51,"value":201},{"type":45,"tag":182,"props":2378,"children":2379},{"style":225},[2380],{"type":51,"value":2381},"read_file",{"type":45,"tag":182,"props":2383,"children":2384},{"style":189},[2385],{"type":51,"value":212},{"type":45,"tag":182,"props":2387,"children":2388},{"style":189},[2389],{"type":51,"value":237},{"type":45,"tag":182,"props":2391,"children":2392},{"class":184,"line":1019},[2393],{"type":45,"tag":182,"props":2394,"children":2395},{"style":189},[2396],{"type":51,"value":1822},{"type":45,"tag":182,"props":2398,"children":2399},{"class":184,"line":1057},[2400,2404,2408,2412,2417,2421],{"type":45,"tag":182,"props":2401,"children":2402},{"style":697},[2403],{"type":51,"value":1830},{"type":45,"tag":182,"props":2405,"children":2406},{"style":189},[2407],{"type":51,"value":217},{"type":45,"tag":182,"props":2409,"children":2410},{"style":189},[2411],{"type":51,"value":222},{"type":45,"tag":182,"props":2413,"children":2414},{"style":225},[2415],{"type":51,"value":2416},"Read a file's contents. Path is relative to the configured root.",{"type":45,"tag":182,"props":2418,"children":2419},{"style":189},[2420],{"type":51,"value":212},{"type":45,"tag":182,"props":2422,"children":2423},{"style":189},[2424],{"type":51,"value":237},{"type":45,"tag":182,"props":2426,"children":2427},{"class":184,"line":1135},[2428,2432,2436,2440,2444,2448,2452,2456,2460,2464],{"type":45,"tag":182,"props":2429,"children":2430},{"style":697},[2431],{"type":51,"value":1859},{"type":45,"tag":182,"props":2433,"children":2434},{"style":189},[2435],{"type":51,"value":217},{"type":45,"tag":182,"props":2437,"children":2438},{"style":189},[2439],{"type":51,"value":414},{"type":45,"tag":182,"props":2441,"children":2442},{"style":697},[2443],{"type":51,"value":1872},{"type":45,"tag":182,"props":2445,"children":2446},{"style":189},[2447],{"type":51,"value":217},{"type":45,"tag":182,"props":2449,"children":2450},{"style":1312},[2451],{"type":51,"value":1400},{"type":45,"tag":182,"props":2453,"children":2454},{"style":189},[2455],{"type":51,"value":92},{"type":45,"tag":182,"props":2457,"children":2458},{"style":1623},[2459],{"type":51,"value":1889},{"type":45,"tag":182,"props":2461,"children":2462},{"style":1312},[2463],{"type":51,"value":2194},{"type":45,"tag":182,"props":2465,"children":2466},{"style":189},[2467],{"type":51,"value":1927},{"type":45,"tag":182,"props":2469,"children":2470},{"class":184,"line":1144},[2471,2475,2479,2483,2487,2491,2495],{"type":45,"tag":182,"props":2472,"children":2473},{"style":697},[2474],{"type":51,"value":1935},{"type":45,"tag":182,"props":2476,"children":2477},{"style":189},[2478],{"type":51,"value":217},{"type":45,"tag":182,"props":2480,"children":2481},{"style":189},[2482],{"type":51,"value":414},{"type":45,"tag":182,"props":2484,"children":2485},{"style":697},[2486],{"type":51,"value":1948},{"type":45,"tag":182,"props":2488,"children":2489},{"style":189},[2490],{"type":51,"value":217},{"type":45,"tag":182,"props":2492,"children":2493},{"style":1955},[2494],{"type":51,"value":1958},{"type":45,"tag":182,"props":2496,"children":2497},{"style":189},[2498],{"type":51,"value":449},{"type":45,"tag":182,"props":2500,"children":2502},{"class":184,"line":2501},33,[2503],{"type":45,"tag":182,"props":2504,"children":2505},{"style":189},[2506],{"type":51,"value":749},{"type":45,"tag":182,"props":2508,"children":2510},{"class":184,"line":2509},34,[2511,2515,2519,2523,2527,2531],{"type":45,"tag":182,"props":2512,"children":2513},{"style":204},[2514],{"type":51,"value":1977},{"type":45,"tag":182,"props":2516,"children":2517},{"style":189},[2518],{"type":51,"value":1982},{"type":45,"tag":182,"props":2520,"children":2521},{"style":1985},[2522],{"type":51,"value":1872},{"type":45,"tag":182,"props":2524,"children":2525},{"style":189},[2526],{"type":51,"value":1992},{"type":45,"tag":182,"props":2528,"children":2529},{"style":204},[2530],{"type":51,"value":1997},{"type":45,"tag":182,"props":2532,"children":2533},{"style":189},[2534],{"type":51,"value":475},{"type":45,"tag":182,"props":2536,"children":2538},{"class":184,"line":2537},35,[2539,2543,2547,2551,2555,2559,2563,2567,2571,2575,2579,2583,2587,2591,2595,2600,2604,2608],{"type":45,"tag":182,"props":2540,"children":2541},{"style":204},[2542],{"type":51,"value":2009},{"type":45,"tag":182,"props":2544,"children":2545},{"style":1312},[2546],{"type":51,"value":2266},{"type":45,"tag":182,"props":2548,"children":2549},{"style":189},[2550],{"type":51,"value":2019},{"type":45,"tag":182,"props":2552,"children":2553},{"style":1302},[2554],{"type":51,"value":2024},{"type":45,"tag":182,"props":2556,"children":2557},{"style":1623},[2558],{"type":51,"value":1441},{"type":45,"tag":182,"props":2560,"children":2561},{"style":697},[2562],{"type":51,"value":1630},{"type":45,"tag":182,"props":2564,"children":2565},{"style":1623},[2566],{"type":51,"value":2037},{"type":45,"tag":182,"props":2568,"children":2569},{"style":697},[2570],{"type":51,"value":1630},{"type":45,"tag":182,"props":2572,"children":2573},{"style":1312},[2574],{"type":51,"value":2046},{"type":45,"tag":182,"props":2576,"children":2577},{"style":189},[2578],{"type":51,"value":1097},{"type":45,"tag":182,"props":2580,"children":2581},{"style":1312},[2582],{"type":51,"value":1872},{"type":45,"tag":182,"props":2584,"children":2585},{"style":697},[2586],{"type":51,"value":1762},{"type":45,"tag":182,"props":2588,"children":2589},{"style":189},[2590],{"type":51,"value":1097},{"type":45,"tag":182,"props":2592,"children":2593},{"style":189},[2594],{"type":51,"value":222},{"type":45,"tag":182,"props":2596,"children":2597},{"style":225},[2598],{"type":51,"value":2599},"utf8",{"type":45,"tag":182,"props":2601,"children":2602},{"style":189},[2603],{"type":51,"value":212},{"type":45,"tag":182,"props":2605,"children":2606},{"style":697},[2607],{"type":51,"value":1762},{"type":45,"tag":182,"props":2609,"children":2610},{"style":189},[2611],{"type":51,"value":1343},{"type":45,"tag":182,"props":2613,"children":2615},{"class":184,"line":2614},36,[2616,2620,2624,2628,2632,2636,2640,2644,2648,2652,2656,2660,2664,2668,2672,2676],{"type":45,"tag":182,"props":2617,"children":2618},{"style":1302},[2619],{"type":51,"value":2215},{"type":45,"tag":182,"props":2621,"children":2622},{"style":189},[2623],{"type":51,"value":414},{"type":45,"tag":182,"props":2625,"children":2626},{"style":697},[2627],{"type":51,"value":2224},{"type":45,"tag":182,"props":2629,"children":2630},{"style":189},[2631],{"type":51,"value":217},{"type":45,"tag":182,"props":2633,"children":2634},{"style":697},[2635],{"type":51,"value":642},{"type":45,"tag":182,"props":2637,"children":2638},{"style":189},[2639],{"type":51,"value":1707},{"type":45,"tag":182,"props":2641,"children":2642},{"style":697},[2643],{"type":51,"value":2241},{"type":45,"tag":182,"props":2645,"children":2646},{"style":189},[2647],{"type":51,"value":217},{"type":45,"tag":182,"props":2649,"children":2650},{"style":189},[2651],{"type":51,"value":222},{"type":45,"tag":182,"props":2653,"children":2654},{"style":225},[2655],{"type":51,"value":51},{"type":45,"tag":182,"props":2657,"children":2658},{"style":189},[2659],{"type":51,"value":212},{"type":45,"tag":182,"props":2661,"children":2662},{"style":189},[2663],{"type":51,"value":1097},{"type":45,"tag":182,"props":2665,"children":2666},{"style":1312},[2667],{"type":51,"value":2266},{"type":45,"tag":182,"props":2669,"children":2670},{"style":189},[2671],{"type":51,"value":1320},{"type":45,"tag":182,"props":2673,"children":2674},{"style":697},[2675],{"type":51,"value":2320},{"type":45,"tag":182,"props":2677,"children":2678},{"style":189},[2679],{"type":51,"value":2325},{"type":45,"tag":182,"props":2681,"children":2683},{"class":184,"line":2682},37,[2684],{"type":45,"tag":182,"props":2685,"children":2686},{"style":189},[2687],{"type":51,"value":749},{"type":45,"tag":182,"props":2689,"children":2691},{"class":184,"line":2690},38,[2692,2696],{"type":45,"tag":182,"props":2693,"children":2694},{"style":1312},[2695],{"type":51,"value":1762},{"type":45,"tag":182,"props":2697,"children":2698},{"style":189},[2699],{"type":51,"value":1343},{"type":45,"tag":182,"props":2701,"children":2703},{"class":184,"line":2702},39,[2704],{"type":45,"tag":182,"props":2705,"children":2706},{"emptyLinePlaceholder":1563},[2707],{"type":51,"value":1566},{"type":45,"tag":182,"props":2709,"children":2711},{"class":184,"line":2710},40,[2712,2716,2721,2725,2729,2733,2737],{"type":45,"tag":182,"props":2713,"children":2714},{"style":204},[2715],{"type":51,"value":1583},{"type":45,"tag":182,"props":2717,"children":2718},{"style":1312},[2719],{"type":51,"value":2720}," transport ",{"type":45,"tag":182,"props":2722,"children":2723},{"style":189},[2724],{"type":51,"value":1593},{"type":45,"tag":182,"props":2726,"children":2727},{"style":189},[2728],{"type":51,"value":1694},{"type":45,"tag":182,"props":2730,"children":2731},{"style":1623},[2732],{"type":51,"value":1359},{"type":45,"tag":182,"props":2734,"children":2735},{"style":1312},[2736],{"type":51,"value":1640},{"type":45,"tag":182,"props":2738,"children":2739},{"style":189},[2740],{"type":51,"value":1343},{"type":45,"tag":182,"props":2742,"children":2744},{"class":184,"line":2743},41,[2745,2750,2755,2759,2764,2769],{"type":45,"tag":182,"props":2746,"children":2747},{"style":1302},[2748],{"type":51,"value":2749},"await",{"type":45,"tag":182,"props":2751,"children":2752},{"style":1312},[2753],{"type":51,"value":2754}," server",{"type":45,"tag":182,"props":2756,"children":2757},{"style":189},[2758],{"type":51,"value":92},{"type":45,"tag":182,"props":2760,"children":2761},{"style":1623},[2762],{"type":51,"value":2763},"connect",{"type":45,"tag":182,"props":2765,"children":2766},{"style":1312},[2767],{"type":51,"value":2768},"(transport)",{"type":45,"tag":182,"props":2770,"children":2771},{"style":189},[2772],{"type":51,"value":1343},{"type":45,"tag":54,"props":2774,"children":2775},{},[2776,2781,2783,2788,2790,2796],{"type":45,"tag":60,"props":2777,"children":2778},{},[2779],{"type":51,"value":2780},"Sandboxing is entirely your job.",{"type":51,"value":2782}," There is no manifest-level sandbox — the process runs with full user privileges. Validate paths, refuse to escape ",{"type":45,"tag":104,"props":2784,"children":2786},{"className":2785},[],[2787],{"type":51,"value":2046},{"type":51,"value":2789},", allowlist spawns. See ",{"type":45,"tag":104,"props":2791,"children":2793},{"className":2792},[],[2794],{"type":51,"value":2795},"references\u002Flocal-security.md",{"type":51,"value":92},{"type":45,"tag":54,"props":2798,"children":2799},{},[2800,2802,2807,2809,2815,2817,2822],{"type":51,"value":2801},"Before hardcoding ",{"type":45,"tag":104,"props":2803,"children":2805},{"className":2804},[],[2806],{"type":51,"value":2046},{"type":51,"value":2808}," from a config env var, check if the host supports ",{"type":45,"tag":104,"props":2810,"children":2812},{"className":2811},[],[2813],{"type":51,"value":2814},"roots\u002Flist",{"type":51,"value":2816}," — the spec-native way to get user-approved directories. See ",{"type":45,"tag":104,"props":2818,"children":2820},{"className":2819},[],[2821],{"type":51,"value":2795},{"type":51,"value":2823}," for the pattern.",{"type":45,"tag":113,"props":2825,"children":2826},{},[],{"type":45,"tag":117,"props":2828,"children":2830},{"id":2829},"build-pipeline",[2831],{"type":51,"value":2832},"Build pipeline",{"type":45,"tag":2834,"props":2835,"children":2836},"h3",{"id":506},[2837],{"type":51,"value":2838},"Node",{"type":45,"tag":124,"props":2840,"children":2844},{"className":2841,"code":2842,"language":2843,"meta":132,"style":132},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install\nnpx esbuild src\u002Findex.ts --bundle --platform=node --outfile=server\u002Findex.js\n# or: copy node_modules wholesale if native deps resist bundling\nnpx @anthropic-ai\u002Fmcpb pack\n","bash",[2845],{"type":45,"tag":104,"props":2846,"children":2847},{"__ignoreMap":132},[2848,2861,2894,2902],{"type":45,"tag":182,"props":2849,"children":2850},{"class":184,"line":185},[2851,2856],{"type":45,"tag":182,"props":2852,"children":2853},{"style":421},[2854],{"type":51,"value":2855},"npm",{"type":45,"tag":182,"props":2857,"children":2858},{"style":225},[2859],{"type":51,"value":2860}," install\n",{"type":45,"tag":182,"props":2862,"children":2863},{"class":184,"line":195},[2864,2869,2874,2879,2884,2889],{"type":45,"tag":182,"props":2865,"children":2866},{"style":421},[2867],{"type":51,"value":2868},"npx",{"type":45,"tag":182,"props":2870,"children":2871},{"style":225},[2872],{"type":51,"value":2873}," esbuild",{"type":45,"tag":182,"props":2875,"children":2876},{"style":225},[2877],{"type":51,"value":2878}," src\u002Findex.ts",{"type":45,"tag":182,"props":2880,"children":2881},{"style":225},[2882],{"type":51,"value":2883}," --bundle",{"type":45,"tag":182,"props":2885,"children":2886},{"style":225},[2887],{"type":51,"value":2888}," --platform=node",{"type":45,"tag":182,"props":2890,"children":2891},{"style":225},[2892],{"type":51,"value":2893}," --outfile=server\u002Findex.js\n",{"type":45,"tag":182,"props":2895,"children":2896},{"class":184,"line":240},[2897],{"type":45,"tag":182,"props":2898,"children":2899},{"style":1572},[2900],{"type":51,"value":2901},"# or: copy node_modules wholesale if native deps resist bundling\n",{"type":45,"tag":182,"props":2903,"children":2904},{"class":184,"line":278},[2905,2909,2914],{"type":45,"tag":182,"props":2906,"children":2907},{"style":421},[2908],{"type":51,"value":2868},{"type":45,"tag":182,"props":2910,"children":2911},{"style":225},[2912],{"type":51,"value":2913}," @anthropic-ai\u002Fmcpb",{"type":45,"tag":182,"props":2915,"children":2916},{"style":225},[2917],{"type":51,"value":2918}," pack\n",{"type":45,"tag":54,"props":2920,"children":2921},{},[2922,2928,2930,2935],{"type":45,"tag":104,"props":2923,"children":2925},{"className":2924},[],[2926],{"type":51,"value":2927},"mcpb pack",{"type":51,"value":2929}," zips the directory and validates ",{"type":45,"tag":104,"props":2931,"children":2933},{"className":2932},[],[2934],{"type":51,"value":145},{"type":51,"value":2936}," against the schema.",{"type":45,"tag":2834,"props":2938,"children":2939},{"id":1177},[2940],{"type":51,"value":2941},"Python",{"type":45,"tag":124,"props":2943,"children":2945},{"className":2841,"code":2944,"language":2843,"meta":132,"style":132},"pip install -t server\u002Fvendor -r requirements.txt\nnpx @anthropic-ai\u002Fmcpb pack\n",[2946],{"type":45,"tag":104,"props":2947,"children":2948},{"__ignoreMap":132},[2949,2982],{"type":45,"tag":182,"props":2950,"children":2951},{"class":184,"line":185},[2952,2957,2962,2967,2972,2977],{"type":45,"tag":182,"props":2953,"children":2954},{"style":421},[2955],{"type":51,"value":2956},"pip",{"type":45,"tag":182,"props":2958,"children":2959},{"style":225},[2960],{"type":51,"value":2961}," install",{"type":45,"tag":182,"props":2963,"children":2964},{"style":225},[2965],{"type":51,"value":2966}," -t",{"type":45,"tag":182,"props":2968,"children":2969},{"style":225},[2970],{"type":51,"value":2971}," server\u002Fvendor",{"type":45,"tag":182,"props":2973,"children":2974},{"style":225},[2975],{"type":51,"value":2976}," -r",{"type":45,"tag":182,"props":2978,"children":2979},{"style":225},[2980],{"type":51,"value":2981}," requirements.txt\n",{"type":45,"tag":182,"props":2983,"children":2984},{"class":184,"line":195},[2985,2989,2993],{"type":45,"tag":182,"props":2986,"children":2987},{"style":421},[2988],{"type":51,"value":2868},{"type":45,"tag":182,"props":2990,"children":2991},{"style":225},[2992],{"type":51,"value":2913},{"type":45,"tag":182,"props":2994,"children":2995},{"style":225},[2996],{"type":51,"value":2918},{"type":45,"tag":54,"props":2998,"children":2999},{},[3000,3002,3008],{"type":51,"value":3001},"Vendor dependencies into a subdirectory and prepend it to ",{"type":45,"tag":104,"props":3003,"children":3005},{"className":3004},[],[3006],{"type":51,"value":3007},"sys.path",{"type":51,"value":3009}," in your entry script. Native extensions (numpy, etc.) must be built for each target platform — avoid native deps if you can.",{"type":45,"tag":113,"props":3011,"children":3012},{},[],{"type":45,"tag":117,"props":3014,"children":3016},{"id":3015},"mcpb-has-no-sandbox-security-is-on-you",[3017],{"type":51,"value":3018},"MCPB has no sandbox — security is on you",{"type":45,"tag":54,"props":3020,"children":3021},{},[3022,3024,3030,3032,3037],{"type":51,"value":3023},"Unlike mobile app stores, MCPB does NOT enforce permissions. The manifest has no ",{"type":45,"tag":104,"props":3025,"children":3027},{"className":3026},[],[3028],{"type":51,"value":3029},"permissions",{"type":51,"value":3031}," block — the server runs with full user privileges. ",{"type":45,"tag":104,"props":3033,"children":3035},{"className":3034},[],[3036],{"type":51,"value":2795},{"type":51,"value":3038}," is mandatory reading, not optional. Every path must be validated, every spawn must be allowlisted, because nothing stops you at the platform level.",{"type":45,"tag":54,"props":3040,"children":3041},{},[3042],{"type":51,"value":3043},"If you came here expecting filesystem\u002Fnetwork scoping from the manifest: it doesn't exist. Build it yourself in tool handlers.",{"type":45,"tag":54,"props":3045,"children":3046},{},[3047],{"type":51,"value":3048},"If your server's only job is hitting a cloud API, stop — that's a remote server wearing an MCPB costume. The user gains nothing from running it locally, and you're taking on local-security burden for no reason.",{"type":45,"tag":113,"props":3050,"children":3051},{},[],{"type":45,"tag":117,"props":3053,"children":3055},{"id":3054},"mcpb-ui-widgets",[3056],{"type":51,"value":3057},"MCPB + UI widgets",{"type":45,"tag":54,"props":3059,"children":3060},{},[3061],{"type":51,"value":3062},"MCPB servers can serve UI resources exactly like remote MCP apps — the widget mechanism is transport-agnostic. A local file picker that browses the actual disk, a dialog that controls a native app, etc.",{"type":45,"tag":54,"props":3064,"children":3065},{},[3066,3068,3077],{"type":51,"value":3067},"Widget authoring is covered in the ",{"type":45,"tag":60,"props":3069,"children":3070},{},[3071],{"type":45,"tag":104,"props":3072,"children":3074},{"className":3073},[],[3075],{"type":51,"value":3076},"build-mcp-app",{"type":51,"value":3078}," skill; it works the same here. The only difference is where the server runs.",{"type":45,"tag":113,"props":3080,"children":3081},{},[],{"type":45,"tag":117,"props":3083,"children":3085},{"id":3084},"testing",[3086],{"type":51,"value":3087},"Testing",{"type":45,"tag":124,"props":3089,"children":3091},{"className":2841,"code":3090,"language":2843,"meta":132,"style":132},"# Interactive manifest creation (first time)\nnpx @anthropic-ai\u002Fmcpb init\n\n# Run the server directly over stdio, poke it with the inspector\nnpx @modelcontextprotocol\u002Finspector node server\u002Findex.js\n\n# Validate manifest against schema, then pack\nnpx @anthropic-ai\u002Fmcpb validate\nnpx @anthropic-ai\u002Fmcpb pack\n\n# Sign for distribution\nnpx @anthropic-ai\u002Fmcpb sign dist\u002Flocal-files.mcpb\n\n# Install: drag the .mcpb file onto Claude Desktop\n",[3092],{"type":45,"tag":104,"props":3093,"children":3094},{"__ignoreMap":132},[3095,3103,3119,3126,3134,3156,3163,3171,3187,3202,3209,3217,3238,3245],{"type":45,"tag":182,"props":3096,"children":3097},{"class":184,"line":185},[3098],{"type":45,"tag":182,"props":3099,"children":3100},{"style":1572},[3101],{"type":51,"value":3102},"# Interactive manifest creation (first time)\n",{"type":45,"tag":182,"props":3104,"children":3105},{"class":184,"line":195},[3106,3110,3114],{"type":45,"tag":182,"props":3107,"children":3108},{"style":421},[3109],{"type":51,"value":2868},{"type":45,"tag":182,"props":3111,"children":3112},{"style":225},[3113],{"type":51,"value":2913},{"type":45,"tag":182,"props":3115,"children":3116},{"style":225},[3117],{"type":51,"value":3118}," init\n",{"type":45,"tag":182,"props":3120,"children":3121},{"class":184,"line":240},[3122],{"type":45,"tag":182,"props":3123,"children":3124},{"emptyLinePlaceholder":1563},[3125],{"type":51,"value":1566},{"type":45,"tag":182,"props":3127,"children":3128},{"class":184,"line":278},[3129],{"type":45,"tag":182,"props":3130,"children":3131},{"style":1572},[3132],{"type":51,"value":3133},"# Run the server directly over stdio, poke it with the inspector\n",{"type":45,"tag":182,"props":3135,"children":3136},{"class":184,"line":316},[3137,3141,3146,3151],{"type":45,"tag":182,"props":3138,"children":3139},{"style":421},[3140],{"type":51,"value":2868},{"type":45,"tag":182,"props":3142,"children":3143},{"style":225},[3144],{"type":51,"value":3145}," @modelcontextprotocol\u002Finspector",{"type":45,"tag":182,"props":3147,"children":3148},{"style":225},[3149],{"type":51,"value":3150}," node",{"type":45,"tag":182,"props":3152,"children":3153},{"style":225},[3154],{"type":51,"value":3155}," server\u002Findex.js\n",{"type":45,"tag":182,"props":3157,"children":3158},{"class":184,"line":353},[3159],{"type":45,"tag":182,"props":3160,"children":3161},{"emptyLinePlaceholder":1563},[3162],{"type":51,"value":1566},{"type":45,"tag":182,"props":3164,"children":3165},{"class":184,"line":391},[3166],{"type":45,"tag":182,"props":3167,"children":3168},{"style":1572},[3169],{"type":51,"value":3170},"# Validate manifest against schema, then pack\n",{"type":45,"tag":182,"props":3172,"children":3173},{"class":184,"line":452},[3174,3178,3182],{"type":45,"tag":182,"props":3175,"children":3176},{"style":421},[3177],{"type":51,"value":2868},{"type":45,"tag":182,"props":3179,"children":3180},{"style":225},[3181],{"type":51,"value":2913},{"type":45,"tag":182,"props":3183,"children":3184},{"style":225},[3185],{"type":51,"value":3186}," validate\n",{"type":45,"tag":182,"props":3188,"children":3189},{"class":184,"line":478},[3190,3194,3198],{"type":45,"tag":182,"props":3191,"children":3192},{"style":421},[3193],{"type":51,"value":2868},{"type":45,"tag":182,"props":3195,"children":3196},{"style":225},[3197],{"type":51,"value":2913},{"type":45,"tag":182,"props":3199,"children":3200},{"style":225},[3201],{"type":51,"value":2918},{"type":45,"tag":182,"props":3203,"children":3204},{"class":184,"line":517},[3205],{"type":45,"tag":182,"props":3206,"children":3207},{"emptyLinePlaceholder":1563},[3208],{"type":51,"value":1566},{"type":45,"tag":182,"props":3210,"children":3211},{"class":184,"line":555},[3212],{"type":45,"tag":182,"props":3213,"children":3214},{"style":1572},[3215],{"type":51,"value":3216},"# Sign for distribution\n",{"type":45,"tag":182,"props":3218,"children":3219},{"class":184,"line":580},[3220,3224,3228,3233],{"type":45,"tag":182,"props":3221,"children":3222},{"style":421},[3223],{"type":51,"value":2868},{"type":45,"tag":182,"props":3225,"children":3226},{"style":225},[3227],{"type":51,"value":2913},{"type":45,"tag":182,"props":3229,"children":3230},{"style":225},[3231],{"type":51,"value":3232}," sign",{"type":45,"tag":182,"props":3234,"children":3235},{"style":225},[3236],{"type":51,"value":3237}," dist\u002Flocal-files.mcpb\n",{"type":45,"tag":182,"props":3239,"children":3240},{"class":184,"line":619},[3241],{"type":45,"tag":182,"props":3242,"children":3243},{"emptyLinePlaceholder":1563},[3244],{"type":51,"value":1566},{"type":45,"tag":182,"props":3246,"children":3247},{"class":184,"line":663},[3248],{"type":45,"tag":182,"props":3249,"children":3250},{"style":1572},[3251],{"type":51,"value":3252},"# Install: drag the .mcpb file onto Claude Desktop\n",{"type":45,"tag":54,"props":3254,"children":3255},{},[3256,3258,3263],{"type":51,"value":3257},"Test on a machine ",{"type":45,"tag":60,"props":3259,"children":3260},{},[3261],{"type":51,"value":3262},"without",{"type":51,"value":3264}," your dev toolchain before shipping. \"Works on my machine\" failures in MCPB almost always trace to a dependency that wasn't actually bundled.",{"type":45,"tag":113,"props":3266,"children":3267},{},[],{"type":45,"tag":117,"props":3269,"children":3271},{"id":3270},"reference-files",[3272],{"type":51,"value":3273},"Reference files",{"type":45,"tag":3275,"props":3276,"children":3277},"ul",{},[3278,3296],{"type":45,"tag":3279,"props":3280,"children":3281},"li",{},[3282,3287,3289,3294],{"type":45,"tag":104,"props":3283,"children":3285},{"className":3284},[],[3286],{"type":51,"value":1271},{"type":51,"value":3288}," — full ",{"type":45,"tag":104,"props":3290,"children":3292},{"className":3291},[],[3293],{"type":51,"value":145},{"type":51,"value":3295}," field reference",{"type":45,"tag":3279,"props":3297,"children":3298},{},[3299,3304],{"type":45,"tag":104,"props":3300,"children":3302},{"className":3301},[],[3303],{"type":51,"value":2795},{"type":51,"value":3305}," — path traversal, sandboxing, least privilege",{"type":45,"tag":3307,"props":3308,"children":3309},"style",{},[3310],{"type":51,"value":3311},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3313,"total":952},[3314,3330,3345,3357,3369,3376,3393],{"slug":3315,"name":3315,"fn":3316,"description":3317,"org":3318,"tags":3319,"stars":26,"repoUrl":27,"updatedAt":3329},"access","manage iMessage channel access and permissions","Manage iMessage channel access — approve pairings, edit allowlists, set DM\u002Fgroup policy. Use when the user asks to pair, approve someone, check who's allowed, or change policy for the iMessage channel.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3320,3323,3326],{"name":3321,"slug":3322,"type":16},"Access Control","access-control",{"name":3324,"slug":3325,"type":16},"iMessage","imessage",{"name":3327,"slug":3328,"type":16},"Messaging","messaging","2026-04-12T04:54:55.917969",{"slug":3331,"name":3331,"fn":3332,"description":3333,"org":3334,"tags":3335,"stars":26,"repoUrl":27,"updatedAt":3344},"agent-development","develop and configure AI agents","This skill should be used when the user asks to \"create an agent\", \"add an agent\", \"write a subagent\", \"agent frontmatter\", \"when to use description\", \"agent examples\", \"agent tools\", \"agent colors\", \"autonomous agent\", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3336,3337,3338,3341],{"name":24,"slug":25,"type":16},{"name":9,"slug":8,"type":16},{"name":3339,"slug":3340,"type":16},"Documentation","documentation",{"name":3342,"slug":3343,"type":16},"Plugin Development","plugin-development","2026-04-10T04:55:41.251084",{"slug":3076,"name":3076,"fn":3346,"description":3347,"org":3348,"tags":3349,"stars":26,"repoUrl":27,"updatedAt":3356},"build MCP apps with interactive UI","This skill should be used when the user wants to build an \"MCP app\", add \"interactive UI\" or \"widgets\" to an MCP server, \"render components in chat\", build \"MCP UI resources\", make a tool that shows a \"form\", \"picker\", \"dashboard\" or \"confirmation dialog\" inline in the conversation, or mentions \"apps SDK\" in the context of MCP. Use AFTER the build-mcp-server skill has settled the deployment model, or when the user already knows they want UI widgets.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3350,3351,3352,3353],{"name":24,"slug":25,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":3354,"slug":3355,"type":16},"UI Components","ui-components","2026-04-06T17:59:32.421865",{"slug":109,"name":109,"fn":3358,"description":3359,"org":3360,"tags":3361,"stars":26,"repoUrl":27,"updatedAt":3368},"build MCP servers","This skill should be used when the user asks to \"build an MCP server\", \"create an MCP\", \"make an MCP integration\", \"wrap an API for Claude\", \"expose tools to Claude\", \"make an MCP app\", or discusses building something with the Model Context Protocol. It is the entry point for MCP server development — it interrogates the user about their use case, determines the right deployment model (remote HTTP, MCPB, local stdio), picks a tool-design pattern, and hands off to specialized skills.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3362,3363,3366,3367],{"name":24,"slug":25,"type":16},{"name":3364,"slug":3365,"type":16},"API Development","api-development",{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},"2026-04-06T17:59:33.744601",{"slug":4,"name":4,"fn":5,"description":6,"org":3370,"tags":3371,"stars":26,"repoUrl":27,"updatedAt":28},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3372,3373,3374,3375],{"name":24,"slug":25,"type":16},{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},{"name":14,"slug":15,"type":16},{"slug":3377,"name":3377,"fn":3378,"description":3379,"org":3380,"tags":3381,"stars":26,"repoUrl":27,"updatedAt":3392},"cardputer-buddy","develop MicroPython apps for Cardputer","Iterate on the Cardputer-Adv MicroPython app bundle (Claude Buddy, Snake, Hello) after the device is already provisioned via m5-onboard. Use when the user wants to add a new app, push a single changed .py without re-flashing, watch device serial logs, or run a one-shot REPL command. Trigger on \"add an app\", \"push to the cardputer\", \"tail the device\", \"run on the device\", or follow-up work after \u002Fmaker-setup.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3382,3385,3388,3391],{"name":3383,"slug":3384,"type":16},"Hardware","hardware",{"name":3386,"slug":3387,"type":16},"M5Stack","m5stack",{"name":3389,"slug":3390,"type":16},"MicroPython","micropython",{"name":2941,"slug":1177,"type":16},"2026-05-06T05:39:00.134385",{"slug":3394,"name":3394,"fn":3395,"description":3396,"org":3397,"tags":3398,"stars":26,"repoUrl":27,"updatedAt":3404},"claude-automation-recommender","recommend Claude Code automations","Analyze a codebase and recommend Claude Code automations (hooks, subagents, skills, plugins, MCP servers). Use when user asks for automation recommendations, wants to optimize their Claude Code setup, mentions improving Claude Code workflows, asks how to first set up Claude Code for a project, or wants to know what Claude Code features they should use.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3399,3402,3403],{"name":3400,"slug":3401,"type":16},"Agent Context","agent-context",{"name":18,"slug":19,"type":16},{"name":21,"slug":22,"type":16},"2026-04-06T18:00:34.049624",{"items":3406,"total":3581},[3407,3428,3442,3454,3471,3482,3502,3520,3534,3544,3552,3565],{"slug":3408,"name":3408,"fn":3409,"description":3410,"org":3411,"tags":3412,"stars":3425,"repoUrl":3426,"updatedAt":3427},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3413,3416,3419,3422],{"name":3414,"slug":3415,"type":16},"Creative","creative",{"name":3417,"slug":3418,"type":16},"Design","design",{"name":3420,"slug":3421,"type":16},"Generative Art","generative-art",{"name":3423,"slug":3424,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":3429,"name":3429,"fn":3430,"description":3431,"org":3432,"tags":3433,"stars":3425,"repoUrl":3426,"updatedAt":3441},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3434,3437,3438],{"name":3435,"slug":3436,"type":16},"Branding","branding",{"name":3417,"slug":3418,"type":16},{"name":3439,"slug":3440,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":3443,"name":3443,"fn":3444,"description":3445,"org":3446,"tags":3447,"stars":3425,"repoUrl":3426,"updatedAt":3453},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3448,3449,3450],{"name":3414,"slug":3415,"type":16},{"name":3417,"slug":3418,"type":16},{"name":3451,"slug":3452,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":3455,"name":3455,"fn":3456,"description":3457,"org":3458,"tags":3459,"stars":3425,"repoUrl":3426,"updatedAt":3470},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3460,3461,3462,3465,3467],{"name":24,"slug":25,"type":16},{"name":9,"slug":8,"type":16},{"name":3463,"slug":3464,"type":16},"Anthropic SDK","anthropic-sdk",{"name":3466,"slug":3455,"type":16},"Claude API",{"name":3468,"slug":3469,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":3472,"name":3472,"fn":3473,"description":3474,"org":3475,"tags":3476,"stars":3425,"repoUrl":3426,"updatedAt":3481},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3477,3478],{"name":3339,"slug":3340,"type":16},{"name":3479,"slug":3480,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":3483,"name":3483,"fn":3484,"description":3485,"org":3486,"tags":3487,"stars":3425,"repoUrl":3426,"updatedAt":3501},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3488,3490,3492,3495,3498],{"name":1653,"slug":3489,"type":16},"documents",{"name":3491,"slug":3483,"type":16},"DOCX",{"name":3493,"slug":3494,"type":16},"Office","office",{"name":3496,"slug":3497,"type":16},"Templates","templates",{"name":3499,"slug":3500,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":3503,"name":3503,"fn":3504,"description":3505,"org":3506,"tags":3507,"stars":3425,"repoUrl":3426,"updatedAt":3519},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3508,3509,3512,3515,3518],{"name":3417,"slug":3418,"type":16},{"name":3510,"slug":3511,"type":16},"Frontend","frontend",{"name":3513,"slug":3514,"type":16},"React","react",{"name":3516,"slug":3517,"type":16},"Tailwind CSS","tailwind-css",{"name":3354,"slug":3355,"type":16},"2026-04-06T17:56:16.723469",{"slug":3521,"name":3521,"fn":3522,"description":3523,"org":3524,"tags":3525,"stars":3425,"repoUrl":3426,"updatedAt":3533},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3526,3529,3530],{"name":3527,"slug":3528,"type":16},"Communications","communications",{"name":3496,"slug":3497,"type":16},{"name":3531,"slug":3532,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":3535,"name":3535,"fn":3358,"description":3536,"org":3537,"tags":3538,"stars":3425,"repoUrl":3426,"updatedAt":3543},"mcp-builder","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3539,3540,3541,3542],{"name":24,"slug":25,"type":16},{"name":3364,"slug":3365,"type":16},{"name":3468,"slug":3469,"type":16},{"name":21,"slug":22,"type":16},"2026-04-06T17:56:10.357665",{"slug":3452,"name":3452,"fn":3545,"description":3546,"org":3547,"tags":3548,"stars":3425,"repoUrl":3426,"updatedAt":3551},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3549,3550],{"name":1653,"slug":3489,"type":16},{"name":3451,"slug":3452,"type":16},"2026-04-06T17:56:02.483316",{"slug":3553,"name":3553,"fn":3554,"description":3555,"org":3556,"tags":3557,"stars":3425,"repoUrl":3426,"updatedAt":3564},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3558,3561],{"name":3559,"slug":3560,"type":16},"PowerPoint","powerpoint",{"name":3562,"slug":3563,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":3566,"name":3566,"fn":3567,"description":3568,"org":3569,"tags":3570,"stars":3425,"repoUrl":3426,"updatedAt":3580},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[3571,3572,3573,3576,3579],{"name":24,"slug":25,"type":16},{"name":3339,"slug":3340,"type":16},{"name":3574,"slug":3575,"type":16},"Evals","evals",{"name":3577,"slug":3578,"type":16},"Performance","performance",{"name":3479,"slug":3480,"type":16},"2026-04-19T06:45:40.804",490]