byok_external_query
ActiveTool of Provenio — Art Intelligence
Cost: ~variable. Forward a JSON HTTP request to YOUR own external API endpoint and return the response. Use when: you need to query a third-party art-market source (Artnet/Artprice/your own gallery DB) that we do not host. Auth: pass your API key in MCP request header 'x-byok-auth' — we forward it as Authorization to your endpoint. Allowed hosts: must match an HTTPS URL on the public internet (no internal IPs, localhost, file://, etc). Returns: {status, body, headers, fetched_at, source_url} — body parsed if JSON, raw if not. Logged for your own audit trail; never trained on. We do NOT cache or persist response bodies.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"endpoint_url"
],
"properties": {
"method": {
"enum": [
"GET",
"POST"
],
"type": "string",
"default": "GET",
"description": "HTTP method (GET or POST). Default GET."
},
"body_json": {
"type": "object",
"description": "Optional JSON body for POST requests.",
"propertyNames": {
"type": "string"
},
"additionalProperties": {}
},
"timeout_ms": {
"type": "number",
"default": 8000,
"description": "Per-request timeout in ms (max 20000)."
},
"endpoint_url": {
"type": "string",
"format": "uri",
"description": "Full HTTPS URL of your external API. Required."
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
Provenio — Art Intelligence
https://github.com/mildo-ai/brain_for_art
1/7 registries