The Asset Directory holds the user’s MCP connections and credentials. These endpoints let you list available servers, initiate connections, complete OAuth flows, and disconnect. All endpoints requireDocumentation Index
Fetch the complete documentation index at: https://septemberai.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
X-Engine-Key.
GET /assets/servers
List MCP servers the Engine knows about.GET /assets/connections
List the user’s active connections.POST /assets/connect
Initiate a connection to a server.POST /assets/callback
Internal endpoint used by the OAuth completion flow. Application code typically doesn’t call this directly — the user’s browser is redirected to/assets/oauth/callback, which posts to this endpoint.
GET /assets/oauth/callback
OAuth redirect target. The OAuth provider redirects the user’s browser here after consent. The Engine validates thestate, completes the
token exchange, and either redirects back to the application or returns
JSON.
| Query | Purpose |
|---|---|
code | OAuth authorization code from the provider. |
state | CSRF-protection state token. |
DELETE /assets/connections/
Disconnect. Revokes the stored credentials and removes the connection.See also
- Built-in MCP tool for how connected servers show up to the agent.
- Environment variables for
AD_ENCRYPTION_KEYandOAUTH_REDIRECT_BASE_URL.

