{
  "info": {
    "name": "Tomba — mcp.ai",
    "description": "REST API for the Tomba 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/tomba",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "tomba_attributes_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/attributes/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "attributes",
            "list"
          ]
        },
        "description": "Retrieves all custom lead attributes defined in your Tomba account. Use this action to discover the available attributes that can be used when creating or updating leads. Returns attribute metadata in",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tomba_domain_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/domain/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "domain",
            "status"
          ]
        },
        "description": "Tool to check if a domain is webmail or disposable. Use when validating email deliverability constraints.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tomba_keys_delete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/keys/delete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "keys",
            "delete"
          ]
        },
        "description": "Tool to delete an API key by its numeric ID. Use when you need to permanently revoke an API key before its expiration. Note: You can get the numeric key ID from the TOMBA_KEYS_LIST action.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tomba_keys_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/keys/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "keys",
            "list"
          ]
        },
        "description": "Tool to list all API keys. Use when you want to retrieve information about your existing Tomba API keys.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tomba_leads_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/leads/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "leads",
            "create"
          ]
        },
        "description": "Create a new lead in Tomba's lead database. Use this to store contact information for a person you want to track. Returns the unique ID of the created lead. Required fields: first_name, email. All oth",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"tags\": \"\",\n  \"email\": \"\",\n  \"phone\": \"\",\n  \"state\": \"\",\n  \"company\": \"\",\n  \"country\": \"\",\n  \"twitter\": \"\",\n  \"website\": \"\",\n  \"linkedin\": \"\",\n  \"position\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tomba_leads_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/leads/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "leads",
            "list"
          ]
        },
        "description": "Tool to list all leads. Use when you need to retrieve and paginate your leads list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tomba_lists_delete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lists/delete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lists",
            "delete"
          ]
        },
        "description": "Tool to delete a leads list by ID. Use when you need to permanently remove a list after confirming its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tomba_lists_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lists/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lists",
            "list"
          ]
        },
        "description": "Tool to list all lead lists. Use when you need to retrieve and paginate your lead lists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tomba_lists_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/lists/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "lists",
            "update"
          ]
        },
        "description": "Tool to update a leads list's name by ID. Use when renaming an existing list after obtaining its ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "tomba_usage_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/usage/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "usage",
            "stats"
          ]
        },
        "description": "Tool to get API usage statistics. Use when you need to monitor account usage and avoid hitting limits.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}