obs-migrate1 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 } }.
{
"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
}
POST https://market.meshtool.ai/mcp (streamable HTTP), tools/call obs-migrate:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "obs-migrate",
"arguments": {
"input": {
"files": {},
"rec_path": "…",
"media_path": "…"
}
}
}
}
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 · MCP manifest · OpenAPI · full capability index