← Home

Intellibiz AI — Service Documentation

Public, agent-discoverable endpoints. Replace YOUR-DOMAIN with your deployment hostname.

Endpoints

Well-known discovery — verify with curl

OAuth Protected Resource (RFC 9728)
curl -sS https://YOUR-DOMAIN/.well-known/oauth-protected-resource
OpenID Connect discovery
curl -sS https://YOUR-DOMAIN/.well-known/openid-configuration
API Catalog (RFC 9727 link set)
curl -sS -H 'Accept: application/linkset+json' https://YOUR-DOMAIN/.well-known/api-catalog
MCP server card
curl -sS https://YOUR-DOMAIN/.well-known/mcp/server-card.json
Agent skills index
curl -sS https://YOUR-DOMAIN/.well-known/agent-skills/index.json
Agent skill descriptor (Markdown)
curl -sS -H 'Accept: text/markdown' https://YOUR-DOMAIN/.well-known/agent-skills/search/SKILL.md

MCP — verify with curl

MCP readiness probe
curl -sS https://YOUR-DOMAIN/mcp/health
MCP tools manifest
curl -sS https://YOUR-DOMAIN/mcp/tools.json
JSON-RPC initialize
curl -sS -X POST https://YOUR-DOMAIN/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize"}'
JSON-RPC tools/list
curl -sS -X POST https://YOUR-DOMAIN/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/list"}'
JSON-RPC tools/call (search)
curl -sS -X POST https://YOUR-DOMAIN/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":3,"method":"tools/call","params":{"name":"search","arguments":{"query":"agent"}}}'

JSON-RPC error codes

Markdown content

Send Accept: text/markdown to /, /login, /signup, or /docs to receive a Markdown rendering of the page.