Skip to main content

Use These Docs from Your AI Agent

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)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 — or add to .cursor/mcp.json:

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

Claude Code

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 — or add to .vscode/mcp.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

ToolWhat it does
api_docs_list_apisList every API (name, title, version, endpoint count) and published guide pages. Start here.
api_docs_get_endpointsList all endpoints in one API: method, path, summary.
api_docs_get_endpoint_infoFull detail for one endpoint: parameters, request body schema, responses, auth.
api_docs_get_security_schemesThe API's authentication schemes and required headers.
api_docs_searchKeyword search across endpoints and guide pages.
api_docs_get_pageRead 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.

Last updated