These docs are an early preview — some sections are still being expanded.
Vidext Docs

Discovery and well-known endpoints

The public machine-readable surface — how agents understand Vidext before authenticating.

Vidext publishes a complete discovery layer on the app domain: public, unauthenticated, machine-readable resources that let an AI client understand the product, find the MCP server, and learn the auth contract — before any token exists. All generated from one source of truth, so they always agree with the live server.

These describe the Vidext product (vidext.com). This documentation site additionally publishes its own llms.txt and per-page .md mirrors describing the docs themselves.

Start-here files for agents

PathWhat it is
/llms.txtThe product summary for LLMs: capabilities, constraints, MCP tool list, links. The canonical agent entry point.
/llms-full.txtEverything in llms.txt plus per-tool reference, auth endpoints, and operational guidance for agents.
/agents.mdWhen and how an agent should use Vidext — task-oriented instructions.
/agent.txtThe terse pointer file: discovery, docs, endpoint, auth in a few lines.
/index.mdHomepage as markdown, with positioning and developer resources.

Scoped variants exist at /api/llms.txt (API/MCP discovery only) and /developers/llms.txt (integration guidance).

MCP discovery

PathWhat it is
/.well-known/mcpMCP discovery JSON: endpoint, transport, protocol versions, auth pointers, tool names.
/.well-known/mcp/server-card.jsonPre-connection server card with tool input schemas and annotations.
/server.jsonMCP-registry-format server metadata (branding, repository, remotes).
/card.jsonCompact JSON product card.
/.well-known/agent-skills/index.jsonAgent Skills discovery index, serving the official Vidext Operator skill (SKILL.md) at /.well-known/agent-skills/vidext-operator/SKILL.md.

Vidext does not advertise A2A. /.well-known/agent-card.json returns 410 because the Operator endpoint speaks MCP, not the A2A protocol.

API contract

PathWhat it is
/openapi.jsonOpenAPI 3.1 spec for the public surface: discovery routes, OAuth endpoints, and the MCP transport (including 401/429 behavior). A transport contract — not a REST CRUD API.
/.well-known/openapi.yamlThe same spec as YAML.
/.well-known/api-catalogRFC 9727 linkset cataloguing the public API surfaces and their docs.

Auth metadata

PathWhat it is
/.well-known/oauth-protected-resourceProtected-resource metadata — where the 401 challenge points.
/api/auth/.well-known/oauth-authorization-serverAuthorization-server metadata listing all OAuth endpoints.
/auth.mdThe minimal headless agent-registration path (see Authentication).

JWKS disambiguation

/.well-known/jwks.json is the LTI key set. The OAuth issuer's JWKS for MCP is /api/auth/mcp/jwks.

Using the layer well

If you are building an agent that discovers Vidext cold: fetch /llms.txt, follow /.well-known/mcp to the endpoint, let the 401 challenge drive OAuth — that exact sequence is what the layer was designed for, and what well-behaved MCP clients do automatically.

Last updated on

On this page