MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

MCP server by momokula123

Created 5/29/2026
Updated about 5 hours ago
Repository documentation and setup instructions

VB6 MCP Server

Visual Basic 6.0 Model Context Protocol Server for AI coding assistants (SOLO / Trae IDE).

Features

  • 13 VB6 development tools via MCP protocol
  • Create, compile, edit VB6 projects
  • Add forms, modules, classes
  • Open VB6 IDE
  • Run and stop VB6 projects
  • Auto-detect VB6 installation and stdole2.tlb

Quick Start

1. Install VB6

Install Visual Basic 6.0 or VB6Mini to the default path:

C:\Program Files (x86)\VB6Mini\bin\VB6.EXE

2. Configure MCP

Add to your SOLO / Trae IDE MCP settings:

{
  "mcpServers": {
    "vb6": {
      "command": "path/to/vb6mcp-v1.0.3.exe"
    }
  }
}

Or run from source with Python:

{
  "mcpServers": {
    "vb6": {
      "command": "python",
      "args": ["path/to/server.py"]
    }
  }
}

3. Use

Ask your AI assistant to create VB6 projects, compile code, etc.

Available Tools

| Tool | Description | |------|-------------| | vb6_set_path | Set/get VB6.EXE path | | vb6_compile | Compile .vbp to EXE | | vb6_create_project | Create new VB6 project | | vb6_write_code | Write VB6 source code | | vb6_read_code | Read VB6 source code | | vb6_add_module | Add .bas module | | vb6_add_form | Add .frm form | | vb6_add_class | Add .cls class | | vb6_open_ide | Open VB6 IDE | | vb6_run | Run VB6 project | | vb6_stop | Stop running VB6 | | vb6_project_info | Get project info | | vb6_list_projects | List .vbp files |

Requirements

  • Windows
  • Visual Basic 6.0 (or VB6Mini)
  • No Python required for EXE version

License

MIT

Quick Setup
Installation guide for this server

Install Package (if required)

uvx vb6mcp

Cursor configuration (mcp.json)

{ "mcpServers": { "momokula123-vb6mcp": { "command": "uvx", "args": [ "vb6mcp" ] } } }