{
  "info": {
    "name": "Rosette Text Analytics — mcp.ai",
    "description": "REST API for the Rosette Text Analytics 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/rosette_text_analytics",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "rosette_text_analytics_address_similarity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/address/similarity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "address",
            "similarity"
          ]
        },
        "description": "Compares two addresses and returns a similarity score. Addresses can be provided as single strings or as structured objects. The tool is optimized for English, Simplified Chinese, and Traditional Chin",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"address1\": {},\n  \"address2\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rosette_text_analytics_language_identification",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/language/identification",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "language",
            "identification"
          ]
        },
        "description": "This tool identifies the natural language of a given text. It takes a string of text as input and returns the detected language along with a confidence score. Optional parameters include specifying a ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"content\": \"\",\n  \"contentUri\": \"\",\n  \"multilingual\": false,\n  \"koreanDialects\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rosette_text_analytics_name_similarity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/name/similarity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "name",
            "similarity"
          ]
        },
        "description": "The 'Name Similarity' tool compares two entity names (Person, Location, or Organization) and returns a similarity score between 0 and 1 to indicate if the names are similar. It is useful for tasks suc",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name1\": {},\n  \"name2\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}