MCP.so
登录

C++ Builder MCP Server

@MCP-Mirror

关于 C++ Builder MCP Server

Mirror of

基本信息

分类

其他

传输方式

stdio

发布者

MCP-Mirror

配置

使用下面的配置,将此服务器添加到你的 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 that compiles C++ DLLs with specific export settings and analyzes DLL exports using Visual Studio build tools. It is designed for developers who need to automate DLL building and export inspection within MCP-compatible environments.

How to use C++ Builder MCP Server?

Clone the repository, install dependencies with npm install, and build the project with npm run build. Configure the server in your MCP settings file using the node command with the path to dist/index.js. Then invoke the available tools – compile_dll to build DLLs and analyze_exports to inspect exports – from your MCP client.

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
  • Platform and configuration targeting
  • Detailed build output

Use cases of C++ Builder MCP Server

  • Automate DLL builds in CI/CD pipelines
  • Validate DLL exports before deployment
  • Generate DLLs with custom export definitions
  • Build for different platforms (x86/x64)
  • Debug builds with full MSBuild output

FAQ from C++ Builder MCP Server

What dependencies are required?

Requires Visual Studio 2022 Community Edition or higher, Visual C++ build tools, and Windows SDK.

How do I configure the server?

Add it to your MCP settings file with "command": "node" and "args" pointing to dist/index.js; the env object can remain empty.

What platforms and configurations are supported?

Supports x86 and x64 platforms, and Debug and Release configurations.

Can I specify which functions to export?

Yes, provide a .def file to the compile_dll tool to control which functions are exposed by the DLL.

How do I analyze a compiled DLL?

Use the analyze_exports tool with the path to the DLL; the server uses dumpbin to list all exported functions, ordinals, names, addresses, and forwarding information.

评论

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