# Use These Docs from Your AI Agent

> Published: 2026-08-06
> Updated: 2026-08-06
> Canonical: https://finalpos.com/docs/ai-agents

Final POS serves its full API documentation over MCP at https://mcp.finalpos.com/mcp with no API key required. Connect from Cursor, Claude Code, Claude Desktop, VS Code, or any MCP client, and your agent can list APIs, search endpoints, read schemas, and check authentication while writing your integration.

The entire Final POS API documentation is queryable by AI agents over [MCP (Model Context Protocol)](https://modelcontextprotocol.io) — **no API key or signup required**. Point your coding agent at our MCP server and it can browse every endpoint, look up request/response schemas, check authentication requirements, and read these guides while it writes your integration.

## Endpoint

```
https://mcp.finalpos.com/mcp
```

Transport: Streamable HTTP. Anonymous access is rate-limited per IP.

## Setup

### Cursor

[Add to Cursor](cursor://anysphere.cursor-deeplink/mcp/install?name=finalpos-docs&config=eyJ1cmwiOiJodHRwczovL21jcC5maW5hbHBvcy5jb20vbWNwIn0%3D) — or add to `.cursor/mcp.json`:

```json
{
  "mcpServers": {
    "finalpos-docs": {
      "url": "https://mcp.finalpos.com/mcp"
    }
  }
}
```

### Claude Code

```bash
claude mcp add --transport http finalpos-docs https://mcp.finalpos.com/mcp
```

### Claude Desktop

Settings → Connectors → Add custom connector, with URL `https://mcp.finalpos.com/mcp`.

### VS Code (GitHub Copilot)

[Install in VS Code](vscode:mcp/install?%7B%22name%22%3A%22finalpos-docs%22%2C%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fmcp.finalpos.com%2Fmcp%22%7D) — or add to `.vscode/mcp.json`:

```json
{
  "servers": {
    "finalpos-docs": {
      "type": "http",
      "url": "https://mcp.finalpos.com/mcp"
    }
  }
}
```

Any other MCP-capable client works the same way — it's a standard Streamable HTTP server.

## Available tools

| Tool | What it does |
| --- | --- |
| `api_docs_list_apis` | List every API (name, title, version, endpoint count) and published guide pages. Start here. |
| `api_docs_get_endpoints` | List all endpoints in one API: method, path, summary. |
| `api_docs_get_endpoint_info` | Full detail for one endpoint: parameters, request body schema, responses, auth. |
| `api_docs_get_security_schemes` | The API's authentication schemes and required headers. |
| `api_docs_search` | Keyword search across endpoints and guide pages. |
| `api_docs_get_page` | Read a guide page (like this one) as markdown. |

## Example

Ask your agent:

> "Using the Final POS docs MCP, find out how to create a customer and then write a Node.js function that creates one with retry handling."

The agent will call `api_docs_search` for "create customer", pull the full schema with `api_docs_get_endpoint_info`, check header requirements with `api_docs_get_security_schemes`, and write code against the real contract — no copy-pasting from a browser.