A powerful MCP server built with NitroStack
Add via Cursor Settings UI (Settings > Features > MCP > Add New MCP Server):
{
"mcpServers": {
// your other mcp servers
"github-deploy-agent": {
"url": "https://deploy-agent-mcp-6a65-server-squad-amrita-university-coimbatore.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
"github-deploy-agent": {
"serverUrl": "https://deploy-agent-mcp-6a65-server-squad-amrita-university-coimbatore.app.nitrocloud.ai/mcp"
}
}
}
Add the following configuration block to your Codex configuration file (~/.codex/config.toml):
[mcp_servers.github-deploy-agent] url = "https://deploy-agent-mcp-6a65-server-squad-amrita-university-coimbatore.app.nitrocloud.ai/mcp"
Connect directly using the Server-Sent Events endpoint:
https://deploy-agent-mcp-6a65-server-squad-amrita-university-coimbatore.app.nitrocloud.ai/mcp
Authenticate with GitHub. Use browser_start/browser_poll for browser redirect login, start/poll for device flow, or pat for a token fallback.
List repositories available to the authenticated GitHub account.
Create a new GitHub repository under the authenticated account.
Get repository metadata and technology analysis for a specific repository.
Use this first when an agent needs to understand a GitHub repository, detect its tech stack, choose build/start commands, or decide how to safely edit it. Returns framework/language/package-manager detection, important files, deploy hints, and recommended next MCP workflow tools.
Preferred tool when the user asks to push code, save generated files, edit files in GitHub, commit changes, update a branch, or apply a patch. Commits many files atomically to the target branch in one GitHub commit.
Preferred tool when the user asks to ship a change, push code safely, open a PR, make a feature branch, implement a requested edit for review, or avoid committing directly to main. Creates a branch, commits all files, and opens a pull request in one workflow.
Preferred tool when the user asks to deploy, dockerize, containerize, prepare a repo for cloud hosting, detect tech stack, infer build/start commands, or generate Dockerfile files. Returns deploy plan and optional Dockerfile/.dockerignore content that can be committed with apply_code_patch or create_feature_branch_and_pr.
Preferred tool after repo_onboarding_summary or prepare_deploy_plan when the user asks to add GitHub Actions, run tests before deploy, block deployment until tests pass, create CI/CD, or prepare a safe deployment pipeline. Generates an appropriate GitHub Actions workflow and can preview it, commit it, or open a PR.
List commit history for a repository with branch/path filtering and pagination.
Read the Git tree for a repository reference with optional path filtering.
Read a file from a GitHub repository and return decoded text plus metadata.
List the files and folders at a repository directory path.
Search code within a repository using GitHub code search syntax.
Create a new branch from an existing repository reference.
Delete a repository branch.
Create a commit with one file change on a repository branch.
Create a single commit that updates multiple files in a branch.
Update a branch reference to a specific commit SHA, equivalent to pushing changes.
Open a new pull request from a source branch to a target branch.
List pull requests for a repository with pagination and filtering.
Merge a pull request using merge, squash, or rebase strategy.
🔒 Security Scan: Detect leaked API keys, tokens, hardcoded passwords, and private configuration files (.env, .pem) committed to Git.
🚀 Deploy Readiness Score: Evaluates repository against production checklists (README, Dockerfile, tests, environment templates, health checks) and returns a score out of 100.
Deploy a GitHub repository to Vercel via Git integration. Automatically detects/creates the project and links the repository.
Deploy a GitHub repository to Netlify via Git integration. Automatically detects/creates the site and triggers a build.
Deploy a GitHub repository to Cloudflare Pages via Git integration. Requires Cloudflare Account ID.
List all services on Render associated with the Render API key.
Trigger a deployment for a specific Render service.
Check the status of a specific deployment on Render.
Create a new Web Service or static site on Render automatically.
❤️ Post-Deploy Health Check: ping a URL to verify it is active and responding successfully, measuring status and response time.
🤖 Plain-English Error Explainer: converts complex compiler/build/deployment logs into simple explanations and suggested fixes.