Connect Your API
The integration pipeline turns OpenAPI operations into curated MCP tools.
CLI flow
Section titled “CLI flow”nexus integrate https://api.example.com/openapi.json \ --non-interactive \ --name health-agent \ --description "Health record assistant"The CLI detects auth schemes, classifies operations, and writes generated tool files.
Found 24 endpointsGenerated 14 tools get_health_records read auto-execute log_symptom write requires approval delete_account high disabledREST flow
Section titled “REST flow”curl -sS https://api.generalaugment.com/api/v1/admin/projects/from-config \ -H "X-Admin-Key: gaadmlive_your_key_here" \ -H "Content-Type: application/json" \ -d @payload.jsonPython HTTP flow
Section titled “Python HTTP flow”from pathlib import Path
import httpx
response = httpx.post( "https://api.generalaugment.com/api/v1/admin/projects/from-config", headers={"X-Admin-Key": "gaadmlive_your_key_here"}, json={"yaml_content": Path("nexus-agent.yaml").read_text()}, timeout=30,)response.raise_for_status()print(response.json()["slug"])Next, tune the result in Configure Tools.