MCP.so
登录

C++ Builder MCP Server

@peterparker57

关于 C++ Builder MCP Server

MCP server providing C++ DLL compilation and analysis capabilities

基本信息

分类

其他

传输方式

stdio

发布者

peterparker57

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "cpp-builder": {
      "command": "node",
      "args": [
        "path/to/cpp-builder-mcp-server/dist/index.js"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is C++ Builder MCP Server?

An MCP server for compiling C++ DLLs and analyzing their exports using Visual Studio build tools like MSBuild and dumpbin.

How to use C++ Builder MCP Server?

Install via npm install and build with npm run build. Add the server to your MCP settings file pointing to the compiled index.js. Invoke tools such as compile_dll (with path to .vcxproj and optional configuration, platform, .def file) and analyze_exports (with path to DLL).

Key features of C++ Builder MCP Server

  • C++ DLL compilation with MSBuild
  • Custom export settings via .def files
  • DLL export analysis using dumpbin
  • Configurable build settings (Debug/Release, x86/x64)
  • Full build output with warnings and errors
  • Detailed export table analysis

Use cases of C++ Builder MCP Server

  • Automating C++ DLL builds inside an MCP‑enabled environment
  • Inspecting exported functions and ordinals of compiled DLLs
  • Integrating Visual Studio build tools into AI‑driven workflows
  • Validating export declarations during CI/CD pipelines

FAQ from C++ Builder MCP Server

What does this server do?

It compiles C++ DLLs with MSBuild and analyzes DLL exports using dumpbin, all through MCP tool calls.

What are the system requirements?

Visual Studio 2022 Community Edition or later, Visual C++ build tools, and the Windows SDK.

How do I install and configure it?

Clone the repo, run npm install and npm run build, then add the server to your MCP settings with node command pointing to dist/index.js.

What tools does it provide?

Two tools: compile_dll for building DLLs and analyze_exports for examining DLL exports.

Can I customize build settings?

Yes, compile_dll accepts optional configuration (Debug/Release), platform (x86/x64), and a defFile path for function exports.

评论

其他 分类下的更多 MCP 服务器