First-MCP-Server-Project vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
First-MCP-Server-Project by burakarslan0110 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 32 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsProductivity |
| Language | C# | TypeScript |
| Last commit | 5 mo ago | this month |
First-MCP-Server-Project · Summary
A .NET 10 MCP server providing math and string processing tools for AI assistants.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
First-MCP-Server-Project · Use cases
- Enable AI assistants to perform mathematical calculations without leaving the chat interface
- Provide text processing capabilities to AI for content analysis
- Demonstrate MCP server implementation in .NET for developers to build upon
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
First-MCP-Server-Project · Install
Installation
- Install [.NET 10.0 SDK](https://dotnet.microsoft.com/download/dotnet/10.0)
- Clone the repository:
git clone https://github.com/burakarslan0110/First-MCP-Server-Project.git - Navigate to the project directory:
cd First-MCP-Server-Project - Restore dependencies:
dotnet restore - Build the project:
dotnet build
Usage
- Run the server:
dotnet run --project First-MCP-Server-Project - Configure your AI assistant (e.g., Claude Desktop) to connect to this MCP server:
{
"mcpServers": {
"first-mcp-server": {
"command": "dotnet",
"args": ["run", "--project", "PATH_TO_PROJECT"]
}
}
}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.