Skip to content
MCP-Bridge
Finance & Payments

POS API Claude Desktop Config

Add the POS API MCP server to Claude Desktop with this ready-to-use configuration.

Setup Instructions

  1. Open Claude Desktop
  2. Go to Settings → Developer → Edit Config → claude_desktop_config.json
  3. Paste the JSON below into the file
  4. Set your credentials in the env section
  5. Restart Claude Desktop

Configuration JSON

Copy the entire block into your claude_desktop_config.json

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

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