filesystem vs mcp-server-azure-devops
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | mcp-server-azure-devops by Tiberriver256 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 367 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | 3 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-server-azure-devops · Summary
A well-implemented MCP server for Azure DevOps that provides comprehensive API integration through MCP protocol.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
mcp-server-azure-devops · Use cases
- Automating Azure DevOps workflows through AI assistants
- Retrieving repository and code information for AI development workflows
- Managing work items and project details via natural language commands
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using 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 Extension
Click the installation buttons in the README to install directly in VS Code.
mcp-server-azure-devops · Install
Installation
Using npm (recommended)
npx -y @tiberriver256/mcp-server-azure-devopsFrom source
git clone https://github.com/tiberriver256/mcp-server-azure-devops.git
cd mcp-server-azure-devops
npm ci
cp .env.example .env
npm run build
npm startClaude Desktop Configuration
{
"mcpServers": {
"azureDevOps": {
"command": "npx",
"args": ["-y", "@tiberriver256/mcp-server-azure-devops"],
"env": {
"AZURE_DEVOPS_ORG_URL": "https://dev.azure.com/your-organization",
"AZURE_DEVOPS_AUTH_METHOD": "pat",
"AZURE_DEVOPS_PAT": "<YOUR_PAT>",
"AZURE_DEVOPS_DEFAULT_PROJECT": "your-project-name"
}
}
}
}