Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"localengineering-mcpserver": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
No description provided.
This server is thin — proceed with caution. Help improve this page →
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
Apify MCP Server
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
MCP proxy that compresses prose fields (tool descriptions, etc.) using caveman rules. Same accuracy, fewer context tokens.
MCP Security Weekly
Get CVE alerts and security updates for LocalEngineering.McpServer and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Lightweight MCP (Model Context Protocol) server used for local engineering and testing. This repository hosts a minimal ASP.NET Core application that exposes an MCP endpoint and a few helper tools.
src/ and targets .NET 8.0.Program.cs) and exposes the MCP HTTP transport at /mcp.dotnet CLI available on PATHFrom the repository root you can run the server with:
dotnet run --project src
The server listens on http://0.0.0.0:5050 by default.
A test project has been added under tests/LocalEngineering.McpServer.Tests. It contains:
SystemTools (SystemToolsTests.cs).WebApplicationFactory<Program> (IntegrationTests.cs).Run the test suite from the repository root:
dotnet test tests/LocalEngineering.McpServer.Tests --verbosity normal
Notes:
Program type to support WebApplicationFactory (see src/Program.Partial.cs)./mcp and asserts the server does not return a 5xx. A 405 Method Not Allowed response was observed during test execution — this is expected because the MCP transport may require specific HTTP methods or payloads.src/Program.cs — application startup and MCP registrationsrc/Program.Partial.cs — small partial type to enable WebApplicationFactory<Program> in teststests/LocalEngineering.McpServer.Tests/LocalEngineering.McpServer.Tests.csproj — test project manifesttests/LocalEngineering.McpServer.Tests/SystemToolsTests.cs — unit teststests/LocalEngineering.McpServer.Tests/IntegrationTests.cs — integration test