A powerful MCP server built with NitroStack
Add via Cursor Settings UI (Settings > Features > MCP > Add New MCP Server):
{
"mcpServers": {
// your other mcp servers
"nitroforge": {
"url": "https://codenext-nitroforge-6a6d882b-codenext-srmist.app.nitrocloud.ai/mcp"
}
}
}
Connect remote tools directly via Claude's Web UI:
Configure custom tools directly via ChatGPT's Web UI:
Add the following configuration block under mcpServers in your Antigravity configuration file (~/.gemini/config/mcp_config.json):
{
"mcpServers": {
// your other mcp servers
"nitroforge": {
"serverUrl": "https://codenext-nitroforge-6a6d882b-codenext-srmist.app.nitrocloud.ai/mcp"
}
}
}
Add the following configuration block to your Codex configuration file (~/.codex/config.toml):
[mcp_servers.nitroforge] url = "https://codenext-nitroforge-6a6d882b-codenext-srmist.app.nitrocloud.ai/mcp"
Connect directly using the Server-Sent Events endpoint:
https://codenext-nitroforge-6a6d882b-codenext-srmist.app.nitrocloud.ai/mcp
Deterministically parse an OpenAPI 3.x spec (URL or raw body) into an EndpointGraph. No model involvement — field names and shapes come from the spec or the call fails.
Cluster a parsed EndpointGraph into a small MCP tool surface (names, descriptions, widget mapping). The only LLM call in NitroForge. Validated against the graph before returning; throws rather than returning a partially-valid plan.
Emit and verify a deployable NitroStack MCP server from a planned tool surface: deterministic codegen (no model), then typecheck, build, boot, and replay every tool against its example. Returns a verification report.