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.

コメント

「その他」の他のコンテンツ