{
  "info": {
    "name": "API Labz — mcp.ai",
    "description": "REST API for the API Labz 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/api_labz",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "api_labz_iban_validator",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/iban/validator",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "iban",
            "validator"
          ]
        },
        "description": "Tool to validate International Bank Account Numbers (IBANs). Use when you need to verify an IBAN's structure before processing transactions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"iban\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "api_labz_integrate_deal",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/integrate/deal",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "integrate",
            "deal"
          ]
        },
        "description": "Tool to integrate a deal into API Labz. Use when you need to push a new or updated deal record into the system after preparing required fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"amount\": 0,\n  \"dealId\": \"\",\n  \"status\": \"\",\n  \"currency\": \"\",\n  \"customFields\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "api_labz_list_tables",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tables"
          ]
        },
        "description": "Tool to list all Airtable tables for a given base. Use when you need to retrieve table names before interacting with a table.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"base_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "api_labz_trello_ai_search_engine",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/trello/ai/search/engine",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "trello",
            "ai",
            "search",
            "engine"
          ]
        },
        "description": "AI-powered semantic search tool for Trello cards across boards and lists. Use this when you need to: - Find cards by natural language queries (e.g., \"bug reports from last week\") - Search across multi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\",\n  \"listId\": \"\",\n  \"boardId\": \"\",\n  \"includeArchived\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}