Binlog MCP Server
A Model Context Protocol Server for analyzing MSBuild binlogs.
Binlog MCP Server
This is a simple demo of a Model Context Protocol Server (MCP) that exposes tools and prompts for analyzing MSBuild binlogs to any MCP server.
To configure this:
- build the repo with
dotnet build
in themsbuild.mcp
directory - configure Claude or VSCode to use the server
- launch your server app and have fun!
To locally debug, use npx to run the Model Context Protocol inspector::
npx @modelcontextprotocol/inspector ./bin/Debug/net9.0/msbuild.mcp
Claude
{
"mcpServers": {
"msbuild": {
"command": "<your repo root>\\binlog.mcp\\bin\\Debug\\net9.0\\binlog.mcp.exe"
}
}
}
VSCode
If you have Claude configured already, you can tell VSCode to use the same settings by adding the following to your settings.json
:
"chat.mcp.discovery.enabled": true,
otherwise, you can configure the server directly:
{
"mcp": {
"inputs": [],
"servers": {
"msbuild": {
"command": "<repo root>\\binlog.mcp\\bin\\Debug\\net9.0\\binlog.mcp.exe",
"args": [],
"env": {}
}
}
}
}
Related Servers
UIAutomator2 MCP Server
Automate and control Android devices using the UIAutomator2 framework.
Homebrew MCP
Interact with Homebrew (the package manager for macOS and Linux) using natural language commands.
YepCode
Execute any LLM-generated code in the YepCode secure and scalable sandbox environment and create your own MCP tools using JavaScript or Python, with full support for NPM and PyPI packages
MCP Command Server
A secure server for executing pre-approved system commands via an environment variable.
Fyers MCP Server
An MCP server for the Fyers API v3, featuring automated OAuth authentication.
reptor-mcp
An MCP server for Reptor/SysReptor that exposes the reptor CLI tool as a programmable service, configured via environment variables.
CodeSeeker
Advanced code search and transformation powered by ugrep and ast-grep for modern development workflows.
BuiltWith
Query the BuiltWith API to discover the technology stacks of websites. Requires a BuiltWith API key.
ForeverVM
Run Python in a code sandbox.
Postman MCP Generator
A server providing JavaScript tools for making Postman API requests.