> ## Documentation Index
> Fetch the complete documentation index at: https://puzzlet-9ba7bb98.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Coding agents

> Connect AI coding agents and editors (Claude Code, Cursor, Codex, GitHub Copilot, VS Code, Zed) to AgentMark: the agent skill, the docs and gateway MCP servers, and the CLI.

AgentMark plugs into AI coding agents and editors so they can author prompts, drive the full API, and debug traces without leaving your editor. It works with Claude Code, Cursor, Codex, GitHub Copilot, VS Code, Zed, and other [Model Context Protocol](https://modelcontextprotocol.io) and [agentskills.io](https://agentskills.io)-compatible tools.

## Start in one command

`npm create agentmark@latest` (or `agentmark init` inside an existing repo) wires every method below into the editors you select: it installs the agent skill and registers the docs and gateway MCP servers. Nothing else to configure.

## Pick a method

There are three ways to connect an agent to AgentMark, plus the CLI. They all share the same gateway API, so pick the one that fits how your agent works. Most setups use several at once: the skill and docs MCP for authoring, the gateway MCP or CLI for driving the API.

| Method                                    | What it gives the agent                                                                                                                      | Reach for it when                                             |
| ----------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------- |
| [Agent skill](/coding-agents/agent-skill) | The full AgentMark playbook (CLI commands, `.prompt.mdx` authoring, datasets, experiments, evals, git deploys), auto-loaded at session start | You want any agent to use AgentMark correctly, in any project |
| [Docs MCP](/coding-agents/docs-mcp)       | A live query interface over the AgentMark docs, so the agent authors files from current guidance instead of memory                           | The agent is creating or editing prompts, datasets, or config |
| [Gateway MCP](/coding-agents/gateway-mcp) | One MCP tool per gateway endpoint: traces, spans, datasets, scores, experiments, apps, deployments, environments, alerts                     | The agent speaks MCP and needs to drive or inspect AgentMark  |
| [CLI](/reference/cli-commands)            | The same gateway API from the shell, so the agent can pre-filter results before they reach its context window                                | The agent can run bash                                        |

<Note>
  The **skill** and **docs MCP** help an agent *author* AgentMark correctly. The **gateway MCP** and **CLI** let it *drive the API* (query traces, manage deployments). They compose: a typical session uses the skill for conventions, the docs MCP for authoring, and the gateway MCP or CLI to inspect results.
</Note>

## Related documentation

<CardGroup cols={2}>
  <Card title="Agent skill" icon="book" href="/coding-agents/agent-skill">
    Install the playbook so your agent already knows AgentMark
  </Card>

  <Card title="Docs MCP" icon="magnifying-glass" href="/coding-agents/docs-mcp">
    Let your editor author files from the live docs
  </Card>

  <Card title="Gateway MCP" icon="wrench" href="/coding-agents/gateway-mcp">
    Drive the full AgentMark API from your editor
  </Card>

  <Card title="CLI commands" icon="terminal" href="/reference/cli-commands">
    The same API from the shell, for bash-capable agents
  </Card>
</CardGroup>

<div className="mt-8 rounded-lg bg-blue-50 p-6 dark:bg-blue-900/30">
  <h3 className="font-semibold mb-3">Have questions?</h3>
  <p className="mb-4">Reach out any time:</p>

  <ul>
    <li>
      Email the team at <a href="mailto:hello@agentmark.co" className="text-blue-600 hover:text-blue-800 dark:text-blue-400 dark:hover:text-blue-200">[hello@agentmark.co](mailto:hello@agentmark.co)</a> for support
    </li>

    <li>
      Schedule an <a href="https://cal.com/ryan-randall/enterprise" className="text-blue-600 hover:text-blue-800 dark:text-blue-400 dark:hover:text-blue-200">Enterprise Demo</a> to learn about AgentMark's business solutions
    </li>
  </ul>
</div>
