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/mcpTransport: 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/mcpClaude 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
| 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.
Last updated
