uk-case-law-mcp-server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
uk-case-law-mcp-server by georgejeffers | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 23 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 42 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具知识库 / RAG开发者工具 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 5 个月前 | 本月 |
uk-case-law-mcp-server · 概述
使用国家档案馆API的英国判例法MCP服务器,可搜索、检索和引用英国法律裁决。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
uk-case-law-mcp-server · 使用场景
- 查找特定法律主题的相关判例法进行法律研究
- 分析英国不同管辖区的法院判决
- 检索具有里程碑意义的裁决全文进行详细审查
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
uk-case-law-mcp-server · 安装
安装
前置要求
- Bun运行时
设置步骤
# 克隆仓库
git clone https://github.com/georgejeffers/uk-case-law-mcp-server.git
cd uk-case-law-mcp-server
# 安装依赖
bun install
# 运行测试
bun test
# 启动服务器
bun startClaude桌面配置
添加到Claude桌面配置文件(macOS上为~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"uk-case-law": {
"command": "bun",
"args": ["run", "/path/to/uk-case-law-mcp/src/server.ts"]
}
}
}filesystem · 安装
安装
使用 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 中安装。