Relay Http Mcp
import requests
url = "https://app.ubik-agent.com/api/v1/flow/mcp/{profile_id}/mcp"
response = requests.options(url)
print(response.text)const options = {method: 'OPTIONS'};
fetch('https://app.ubik-agent.com/api/v1/flow/mcp/{profile_id}/mcp', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request OPTIONS \
--url https://app.ubik-agent.com/api/v1/flow/mcp/{profile_id}/mcp{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Relay Http Mcp
Streamable HTTP MCP ingress (S5) — forwards to desktop /mcp.
OPTIONS
/
flow
/
mcp
/
{profile_id}
/
mcp
Relay Http Mcp
import requests
url = "https://app.ubik-agent.com/api/v1/flow/mcp/{profile_id}/mcp"
response = requests.options(url)
print(response.text)const options = {method: 'OPTIONS'};
fetch('https://app.ubik-agent.com/api/v1/flow/mcp/{profile_id}/mcp', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request OPTIONS \
--url https://app.ubik-agent.com/api/v1/flow/mcp/{profile_id}/mcp{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Path Parameters
Response
Successful Response
Was this page helpful?
⌘I

