compatibility_lookup
Return the source-backed ResolveMesh compatibility result for one allowlisted client and hosted-tool pair.
Parameters2
| client | string | required | |
| tool | string | required |
Raw schema
{
"type": "object",
"properties": {
"client": {
"type": "string",
"enum": [
"chatgpt-web",
"chatgpt-desktop",
"claude-code",
"cursor",
"codex",
"gemini-cli",
"vs-code"
]
},
"tool": {
"type": "string",
"enum": [
"github",
"linear",
"figma",
"notion",
"atlassian"
]
}
},
"required": [
"client",
"tool"
],
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false
}