AI-Create-MCP (WIP)
ai-create-mcp is a Go-based tool that converts OpenAPI Specification (OAS) files into a Model Context Protocol (MCP) program.
Overview
AI-Create-MCP is a Go-based tool designed to convert OpenAPI Specification (OAS) files into a Model Context Protocol (MCP) program, facilitating the generation of MCP-compliant code or configurations.
To use AI-Create-MCP, install it via Go or clone the repository. Configure the tool using command-line flags to specify project details and the OAS file path.
- Converts OAS files to MCP protocol. - Customizable project name, directory, and version. - Optional integration with Claude.app. - Inspector tool for debugging and analysis.
- Generating MCP projects from OAS files.
- Customizing project setups for different applications.
- Debugging and analyzing generated MCP configurations.
Add to your AI client
Use these steps to connect AI-Create-MCP (WIP) in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"ai-create-mcp-xxlv": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ai-create-mcp-xxlv"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"ai-create-mcp-xxlv": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ai-create-mcp-xxlv"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"ai-create-mcp-xxlv": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ai-create-mcp-xxlv"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"ai-create-mcp-xxlv": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ai-create-mcp-xxlv"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"ai-create-mcp-xxlv": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ai-create-mcp-xxlv"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"ai-create-mcp-xxlv": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ai-create-mcp-xxlv"
]
}
}
}FAQ
Is AI-Create-MCP free to use?
Yes! AI-Create-MCP is open-source and free to use.
What programming language is used?
The tool is built using the Go programming language.
How can I contribute to the project?
You can contribute by forking the repository, making changes, and submitting a pull request.