Files
registry/entries/fs-mcp/manifest.json
Johnson f6091d21c4 feat: 完善 entries/ 格式 — 补全结构化字段、更新 README 和 Schema
- 所有 20 个 manifest.json 补全旧格式中的结构化字段
  - docker-app: category, fullDesc, stars, githubUrl, install
  - mcp: capabilities, toolCount, install, connection
  - http-api: endpoint, capabilities
- README 全面重写:entries/ 目录结构、manifest 字段说明、三种类型的添加示例
- SCHEMA_VERSION 升级 2.0.0 → 3.0.0
- 根 manifest.json 简化为 entries 统一统计
2026-03-08 20:11:54 +08:00

45 lines
874 B
JSON

{
"id": "fs-mcp",
"name": "Filesystem MCP",
"type": "mcp",
"version": "1.2.0",
"author": "Anthropic",
"description": "本地文件系统操作,支持读写、搜索、监控文件变化",
"tags": [
"文件系统",
"本地"
],
"icon": "terminal",
"platformSupport": [
"macos",
"windows",
"linux"
],
"capabilities": [
"file_read",
"file_write",
"file_search",
"file_watch"
],
"toolCount": 11,
"install": {
"method": "npx",
"packageName": "@modelcontextprotocol/server-filesystem",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/dir"
]
},
"connection": {
"transport": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/dir"
]
}
}