Skip to content
MCP-Bridge
Finance & Payments

POS API MCP Config

Welcome to the POS API. You can use this API to access all POS API endpoints. ## Base URL The base URL for all API requests is `https://unify.apideck.com` We also provide a [Mock API](https://developers.apideck.com/mock-api) that can be used for testing purposes: `https://mock-api.apideck.com`

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcp-bridge.pages.dev/config/apideck-com-pos.json

Configuration JSON

Use curl https://mcp-bridge.pages.dev/config/apideck-com-pos.json to fetch programmatically.

{
  "mcpServers": {
    "apideck-com-pos": {
      "command": "npx",
      "args": ["-y","@mcp/apideck-com-pos"],
      "env": {
      "POS_API_API_KEY": "your_pos_api_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcp-bridge.pages.dev/config/apideck-com-pos.json

Environment Variables

POS_API_API_KEY

Replace your_pos_api_api_key with your actual pos api api key

Endpoints

GET/pos/items

List Items

POST/pos/items

Create Item

GET/pos/items/{id}

Get Item

DELETE/pos/items/{id}

Delete Item

PATCH/pos/items/{id}

Update Item

GET/pos/locations

List Locations

POST/pos/locations

Create Location

GET/pos/locations/{id}

Get Location

DELETE/pos/locations/{id}

Delete Location

PATCH/pos/locations/{id}

Update Location