Dataverse-skills vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
Dataverse-skills by microsoft | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 101 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsDatabaseAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | — | TypeScript |
| Last commit | this month | this month |
Dataverse-skills · Summary
Microsoft Dataverse skills for AI coding agents that wrap Dataverse MCP server, CLI, SDK and PAC CLI.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
Dataverse-skills · Use cases
- Natural language querying of Dataverse data for CRM analysis
- Automating Dataverse solution deployment across environments
- Creating and managing data models and metadata through AI agents
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
Dataverse-skills · Install
Installation
For GitHub Copilot:
/plugin install dataverse@awesome-copilotFor Claude Code:
/plugin install dataverse@claude-plugins-officialAfter installation, connect to Dataverse by asking your agent: "Connect to Dataverse". This will walk through tool checks, authentication, and MCP registration.
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.