Exa Websets

create_enrichment

Create a new enrichment for a webset. Enrichments automatically extract custom data from each item using AI agents (e.g., 'company revenue', 'CEO name', 'funding amount'). IMPORTANT PARAMETER FORMATS: - options (when format is "options"): MUST be array of objects like [{label: "..."}] (NOT array of strings) Example call (text format): {"websetId": "webset_123", "description": "CEO name", "format": "text"} Example call (options format): {"websetId": "webset_123", "description": "Company stage", "format": "options", "options": [{"label": "Seed"}, {"label": "Series A"}]}

Remote exa-labs/websets-mcp-server

Other tools also called create_enrichment? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "format": {
      "enum": [
        "text",
        "date",
        "number",
        "options",
        "email",
        "phone",
        "url"
      ],
      "type": "string",
      "description": "Format of the enrichment response. API auto-selects if not specified."
    },
    "options": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "label"
        ],
        "properties": {
          "label": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "description": "When format is 'options', the different options for the enrichment agent to choose from (1-150 options). Each option is an object with a 'label' field. Example: [{label: 'Small (1-50)'}, {label: 'Medium (51-200)'}, {label: 'Large (201+)'}]"
    },
    "metadata": {
      "type": "object",
      "description": "Key-value pairs to associate with this enrichment",
      "additionalProperties": {
        "type": "string"
      }
    },
    "websetId": {
      "type": "string",
      "description": "The ID or externalId of the webset"
    },
    "description": {
      "type": "string",
      "description": "Detailed description of what data to extract (e.g., 'Annual revenue in USD', 'Number of full-time employees')"
    }
  }
}