> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nometria.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Claude Code Plugin

> MCP server that lets Claude Code deploy, manage, and monitor your apps with natural language.

<Card title="GitHub" icon="github" href="https://github.com/nometria/claude-code-plugin">
  `nometria/claude-code-plugin` — MIT License
</Card>

## 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

```bash theme={null}
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

| Category     | Tools                                                                                                |
| ------------ | ---------------------------------------------------------------------------------------------------- |
| **Deploy**   | `nometria_deploy`, `nometria_preview`                                                                |
| **Monitor**  | `nometria_status`, `nometria_logs`, `nometria_list_apps`                                             |
| **Setup**    | `nometria_init`, `nometria_setup`, `nometria_login`                                                  |
| **GitHub**   | `nometria_github_connect`, `nometria_github_status`, `nometria_github_repos`, `nometria_github_push` |
| **Instance** | `nometria_start`, `nometria_stop`, `nometria_terminate`, `nometria_upgrade`                          |
| **Config**   | `nometria_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

```bash theme={null}
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:

| Command           | What it does                       |
| ----------------- | ---------------------------------- |
| `/deploy`         | Full deploy-to-production workflow |
| `/preview`        | Create a free staging preview      |
| `/status`         | Check status of all your apps      |
| `/nometria-login` | Set up authentication              |

See the [slash commands guide](/cli/slash-commands) for details.

<Info>
  See the full [MCP server documentation](/cli/mcp-server) for detailed tool descriptions and troubleshooting.
</Info>
