Skip to main content

GitHub

nometria/claude-code-plugin — MIT License

What it does

This is an MCP (Model Context Protocol) server that gives Claude Code 20 deployment tools. Instead of switching to a dashboard or terminal, you can just ask Claude to deploy, check status, set environment variables, and more — all through conversation.

Install

claude mcp add nometria -- npx @nometria-ai/claude-code
That’s it. Next time you open Claude Code in a project, it can deploy for you.

What you can say

After installing, try these in Claude Code:
  • “Deploy this project to AWS”
  • “Show me the deployment status”
  • “Set the DATABASE_URL environment variable”
  • “Run a security scan”
  • “Create a staging preview”
  • “Stop the instance”

20 tools included

CategoryTools
Deploynometria_deploy, nometria_preview
Monitornometria_status, nometria_logs, nometria_list_apps
Setupnometria_init, nometria_setup, nometria_login
GitHubnometria_github_connect, nometria_github_status, nometria_github_repos, nometria_github_push
Instancenometria_start, nometria_stop, nometria_terminate, nometria_upgrade
Confignometria_domain_add, nometria_env_set, nometria_env_list, nometria_scan

Authentication

The plugin reads your API key from ~/.nometria/credentials.json (created by nom login). You can also set the NOMETRIA_API_KEY environment variable.

npm

npm install -g @nometria-ai/claude-code     # Global install
npx @nometria-ai/claude-code                 # Run directly

Slash commands

The plugin also ships with Claude Code slash commands. Run nom setup in your project to install them:
CommandWhat it does
/deployFull deploy-to-production workflow
/previewCreate a free staging preview
/statusCheck status of all your apps
/nometria-loginSet up authentication
See the slash commands guide for details.
See the full MCP server documentation for detailed tool descriptions and troubleshooting.