home / mcp / mcp forge mcp server
MCP server for generating other MCP servers in Smithery
Configuration
View docs{
"mcpServers": {
"chromewillow-mcp-forge": {
"command": "npx",
"args": [
"-y",
"@smithery/cli@latest",
"run",
"@your-username/mcp-forge",
"--config",
"{}"
]
}
}
}You can generate, configure, and deploy MCP servers with MCP Forge, a versatile generator designed for Smithery integration and Cursor IDE workflows. It helps you create template-based MCP servers quickly and connect them to development and deployment pipelines.
Use MCP Forge to generate a new MCP server from a chosen template, then start the server locally to develop and test. You can also obtain Cursor IDE integration configurations and deployment instructions for Smithery from the same toolchain. When you want to connect with Cursor IDE, you will add a dedicated MCP command to your Cursor configuration so you can run, test, and manage MCP servers directly from your development environment.
Prerequisites: ensure you have Node.js and npm installed on your development machine.
Install the project dependencies for MCP Forge.
npm installTo integrate MCP Forge with Cursor IDE, add the following configuration to your Cursor setup to enable running MCP Forge from Cursor.
{
"mcpServers": {
"mcp-forge": {
"command": "npx",
"args": [
"-y",
"@smithery/cli@latest",
"run",
"@your-username/mcp-forge",
"--config",
"{}"
]
}
}
}Choose from templates to jumpstart your MCP server development. Templates include Basic for a simple server with a sample tool, Web Search for web-enabled capabilities, and Database for PostgreSQL interactions.
Generate MCP Server — Creates a new MCP server with your chosen configuration.
Get Cursor Integration — Provides integration code and setup steps for Cursor IDE.
Deploy to Smithery — Presents deployment instructions for Smithery.
Generates a new MCP server with the specified configuration.
Provides integration code for Cursor IDE to run MCP Forge from Cursor.
Gives instructions for deploying MCP servers to Smithery.