{
  "info": {
    "name": "Amcards — mcp.ai",
    "description": "REST API for the Amcards MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/amcards",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "amcards_get_api_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/api/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "api",
            "schema"
          ]
        },
        "description": "Tool to retrieve the entire schema for AMCards API V1. Use when you need to discover available API endpoints, resources, and their structure.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "amcards_get_cards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cards"
          ]
        },
        "description": "This tool retrieves a list of all cards associated with the authenticated account. The action is completely independent and doesn't require any external resource IDs or parameters beyond authenticatio",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "amcards_get_category",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/category",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "category"
          ]
        },
        "description": "Tool to retrieve details of a specific category by ID. Use when you need to fetch information about a card template category including its title, hierarchy, and priority.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"category_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "amcards_get_category_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/category/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "category",
            "schema"
          ]
        },
        "description": "Tool to retrieve the schema for Category resource. Categories are readonly. Use when you need to understand the structure and available fields of the Category resource.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "amcards_get_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contacts"
          ]
        },
        "description": "This tool retrieves a list of contacts from AMCards. It is used for managing contacts by providing details like limit, skip, and filters (e.g., last_name, first_name, email). The tool returns an array",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"skip\": 0,\n  \"email\": \"\",\n  \"limit\": 0,\n  \"last_name\": \"\",\n  \"first_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "amcards_get_gift",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/gift",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "gift"
          ]
        },
        "description": "Tool to retrieve details of a specific gift by ID. Use when you need to fetch information about a particular gift including its name, description, price, shipping cost, and availability.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "amcards_get_public_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/public/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "public",
            "template"
          ]
        },
        "description": "Tool to retrieve details of a specific public template by ID. Use when you need to get information about a specific template including its configuration, panels, and metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "amcards_list_categories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/categories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "categories"
          ]
        },
        "description": "Tool to retrieve a list of card template categories from AMCards. Categories are returned ordered by their priority (1 is highest). Use when you need to browse available categories, filter by parent c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"parent__id\": 0,\n  \"title__icontains\": \"\",\n  \"parent__title__icontains\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "amcards_list_gifts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/gifts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "gifts"
          ]
        },
        "description": "Tool to retrieve a list of Gift items offered by AMcards. Use when you need to display or reference available gifts for selection or purchase. No authorization required.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "amcards_list_public_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/public/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "public",
            "templates"
          ]
        },
        "description": "Tool to retrieve a list of public templates available to all users. Use when you need to browse or search available card templates. No authorization required for this endpoint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"category__id\": 0,\n  \"name__icontains\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}