{
  "info": {
    "name": "SimpleLocalize — mcp.ai",
    "description": "REST API for the SimpleLocalize 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/simple_localize",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "simple_localize_create_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "tag"
          ]
        },
        "description": "Create a project tag for organizing translation keys.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "simple_localize_create_translation_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/translation/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "translation",
            "key"
          ]
        },
        "description": "Create one translation key and optional metadata in the connected project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"lock\": false,\n  \"tags\": \"\",\n  \"namespace\": \"\",\n  \"attributes\": {},\n  \"deprecated\": false,\n  \"description\": \"\",\n  \"characters_limit\": 0,\n  \"code_description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "simple_localize_create_translation_keys",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/translation/keys",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "translation",
            "keys"
          ]
        },
        "description": "Create up to 100 translation keys and report every rejected entry; valid entries may still be created when others fail.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"translation_keys\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "simple_localize_delete_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "tag"
          ]
        },
        "description": "Permanently delete one project tag by its exact name. This destructive action cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "simple_localize_delete_translation_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/translation/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "translation",
            "key"
          ]
        },
        "description": "Permanently delete one translation key, including all translations attached to it, by exact key and namespace. WARNING: This destructive action cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"namespace\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "simple_localize_export_translations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/export/translations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "export",
            "translations"
          ]
        },
        "description": "Create downloadable snapshot URLs for project translations in a selected file format. Returns URLs without downloading file bytes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"tags\": \"\",\n  \"customer_id\": \"\",\n  \"language_keys\": \"\",\n  \"language_order\": \"\",\n  \"download_format\": \"\",\n  \"download_options\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "simple_localize_get_project_context",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/context",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "context"
          ]
        },
        "description": "Return the connected project and its current languages, tags, and hosting environments so an agent can choose valid identifiers before managing translations.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "simple_localize_get_translation_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/translation/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "translation",
            "key"
          ]
        },
        "description": "Return full metadata for one translation key selected by key and namespace.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"namespace\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "simple_localize_list_activity",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/activity",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "activity"
          ]
        },
        "description": "Return a manually selected page of recent project changes for operational visibility.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"size\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "simple_localize_list_file_formats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/file/formats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "file",
            "formats"
          ]
        },
        "description": "Return the file formats currently accepted by SimpleLocalize exports, including multi-language, beta, and deprecation metadata.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "simple_localize_list_translation_keys",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/translation/keys",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "translation",
            "keys"
          ]
        },
        "description": "Search translation keys and return one controllable page of provider summary fields. Use Get Translation Key for detailed metadata such as tags.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"size\": 0,\n  \"sort\": \"\",\n  \"namespace\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "simple_localize_list_translations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/translations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "translations"
          ]
        },
        "description": "Search translations by key, language, text, review state, or namespace and return one page.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"size\": 0,\n  \"text\": \"\",\n  \"query\": \"\",\n  \"sort_by\": \"\",\n  \"language\": \"\",\n  \"base_only\": false,\n  \"namespace\": \"\",\n  \"sort_order\": \"\",\n  \"customer_id\": \"\",\n  \"next_cursor\": \"\",\n  \"text_status\": \"\",\n  \"review_status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "simple_localize_set_translation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/translation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "translation"
          ]
        },
        "description": "Set the text and optional review state for one existing translation key and language.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"text\": \"\",\n  \"language\": \"\",\n  \"namespace\": \"\",\n  \"customer_id\": \"\",\n  \"review_status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "simple_localize_set_translations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/translations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "translations"
          ]
        },
        "description": "Set 1 to 100 translations in one request. Reports each rejected entry and distinguishes complete success from partial success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"translations\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}