aiskillstore vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
aiskillstore by garasegae | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 36 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具其它 | 本地文件系统开发者工具效率工具 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 本月 | 本月 |
aiskillstore · 概述
MCP服务器,让AI代理能够发现、安装和审查技能市场中专为AI代理设计的技能。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
aiskillstore · 使用场景
- AI代理根据其特定需求发现和安装新功能
- 技能开发者通过市场上传和管理其AI代理技能
- 系统管理员在部署前检查技能与目标平台的兼容性
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
aiskillstore · 安装
安装
快速开始(远程)
将以下配置添加到您的MCP客户端设置中:
{
"mcpServers": {
"aiskillstore": {
"url": "https://aiskillstore.io/mcp",
"transport": "streamable-http"
}
}
}自托管(Docker)
docker build -t aiskillstore-mcp .
docker run --rm -i aiskillstore-mcp对于开发或测试,您可以覆盖后端URL:
docker run --rm -i -e SKILL_STORE_URL=https://staging.aiskillstore.io aiskillstore-mcpfilesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。