A powerful MCP server generator for Smithery with Cursor IDE integration.
- Generate new MCP servers from templates
- Get Cursor IDE integration configurations
- Get deployment instructions for Smithery
- Basic: Simple MCP server with an example tool
- Web Search: MCP server with web search capabilities
- Database: MCP server with PostgreSQL database interaction
npm install
npm start
To integrate this MCP server with Cursor IDE, add the following configuration to your ~/.cursor/mcp.json
file:
{
"mcpServers": {
"mcp-forge": {
"command": "npx",
"args": [
"-y",
"@smithery/cli@latest",
"run",
"@your-username/mcp-forge",
"--config",
"{}"
]
}
}
}
Generates a new MCP server with the specified configuration.
Provides integration code for Cursor IDE.
Gives instructions for deploying to Smithery.
MIT