Skip to content

Connect Your API

The integration pipeline turns OpenAPI operations into curated MCP tools.

Terminal window
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 endpoints
Generated 14 tools
get_health_records read auto-execute
log_symptom write requires approval
delete_account high disabled
Terminal window
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.json
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.