Skip to main content
Once the MCP server is installed, your coding agent can ask NOFire AI about production without leaving the editor.

Available tools

Once configured, these tools are available to your AI assistant:

Shift-left / proactive reliability

Score deployment risk for a service before merging:Example:
Uses nofire_assess_deployment_risk to calculate a weighted risk score (0-100) based on blast radius, dependency depth, incident history, and recent change velocity.Risk levels: LOW (0-39), MEDIUM (40-59), HIGH (60-79), CRITICAL (80-100).
Understand cascading impact of service failures:Example:
Uses nofire_analyze_blast_radius to traverse the dependency graph and show direct + transitive impact.
Get a cluster-wide health overview when you do not know where to start:Example:
Uses nofire_get_cluster_summary to show entity counts, top problematic services, and recent alert investigations.

Incident response & RCA

Find services, pods, deployments in your cluster:Example:
Uses nofire_search_entities with partial name matching.
View recent infrastructure changes and correlated VCS activity (commits, PRs):Example:
Uses nofire_get_entity_changes which returns deployments, configuration updates, scaling events, plus merged PRs and pushes in the same time window.
See cluster-wide deploy and change timeline:Example:
Uses nofire_get_recent_deploys to show a chronological timeline of infra changes + VCS events across the cluster.
Explore service dependencies:Example:
Uses nofire_get_entity_dependencies to show upstream and downstream connections.

Usage examples

Pre-merge risk assessment

Scenario: You have modified payment processing code and want to assess risk before creating a PR. In Cursor:
Cursor Response:

Onboarding New engineers

Scenario: New team member needs to understand the production architecture. In Cursor:
Cursor Response:

Investigating Production behavior

Scenario: A service has been flaky, you want to understand what changed. In Claude Desktop:
Claude Response:

Best practices

Make it a habit to check deployment risk before you create or approve a pull request.
New team members can ask NOFire AI about production:
  • “What services do we have in production?”
  • “How does auth-service connect to user-service?”
  • “What changed in payment-service this week?”
Makes production knowledge accessible without tribal knowledge bottlenecks.
Provide context about what you are doing:❌ “Check risk” ✅ “I am updating payment API error handling. What is the deployment risk?”❌ “What changed?” ✅ “What changed in auth-service in the last 24 hours?”
When something breaks, ask NOFire AI:
  • “What changed in [service] before the incident?”
  • “Analyze [service] changes from 2 hours ago”
  • “What services depend on [broken-service]?”
Speeds up incident response by making telemetry data queryable.
When you discover critical dependencies or high-risk services, document them. Share what NOFire AI teaches you about production.

Bonus: Automate with AGENTS.md

Make NOFire AI checks automatic by adding them to your AGENTS.md file. AI coding agents then always use NOFire AI for deployment risk and operational knowledge. Create or update AGENTS.md in your repository root:
Why this works:
  • Works with Cursor, GitHub Copilot, Jules, Aider, and most AI coding agents
  • Makes shift-left and operational knowledge automatic
  • Entire team follows same safety checks and has access to production knowledge

Next steps

Troubleshooting

The server does not appear, a tool returns nothing, or a token is rejected.

Deployment risk

What NOFire AI checks before you deploy.