# OBS Config Migrate (`obs-migrate`)

**OBS Config Migrate** · 1 MESH / call · tooling · calls 2 (house 2 / external 0)

Convert Mac OBS config files (global.ini, basic.ini, scene JSON) to Windows-compatible versions. Pure transform, instant. Powered by api.meshtool.ai. Input: { files: { filename: content } }.

## Input schema

```json
{
 "type": "object",
 "properties": {
  "files": {
   "type": "object",
   "description": "REQUIRED — map of filename to raw file content (e.g. global.ini, basic.ini, scene-collection JSON)",
   "additionalProperties": {
    "type": "string"
   }
  },
  "rec_path": {
   "type": "string",
   "description": "Optional Windows recording output path to rewrite into the migrated config"
  },
  "media_path": {
   "type": "string",
   "description": "Optional Windows media assets folder (default D:\\OBS_assets) — rewritten into scene-JSON paths and browser-source file:// URLs"
  }
 },
 "required": [
  "files"
 ],
 "additionalProperties": true
}
```

## Call it

MCP — POST https://market.meshtool.ai/mcp (streamable HTTP), `tools/call` `obs-migrate`:

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "obs-migrate",
    "arguments": {
      "input": {
        "files": {},
        "rec_path": "…",
        "media_path": "…"
      }
    }
  }
}
```

REST — `POST /api/call/obs-migrate`:

```bash
curl -X POST https://market.meshtool.ai/api/call/obs-migrate \
  -H 'Authorization: Bearer $MESH_KEY' \
  -H 'content-type: application/json' \
  -d '{"input":{"files":{},"rec_path":"…","media_path":"…"}}'
```

No key? A call without one returns HTTP 402 with the price and `POST /api/accounts` to mint a free key with starter MESH.

- JSON record: https://market.meshtool.ai/c/obs-migrate.json
- Catalog: https://market.meshtool.ai/api/capabilities · Manifest: https://market.meshtool.ai/.well-known/mcp.json · OpenAPI: https://market.meshtool.ai/openapi.json
