Request an LLM Connection
Use this form to register your LLM provider endpoint with the AshLab Gateway. Once approved by an admin, you will receive an MCP connection string that routes all your AI traffic through the enterprise proxy β giving you governance, telemetry, cost tracking, and security controls with zero code changes.
π How the Connection String Works
Submit this form
Fill in your LLM provider endpoint, authentication details, and a description of what your agent will do. This creates a pending connection request that an admin will review.
Admin reviews & approves
An AshLab admin will verify the endpoint, review the auth model, and either approve or deny the request. You will be notified with an MCP connection string on approval.
You receive an MCP connection string
The connection string is a JSON object that tells your agent how to talk to the LLM via the AshLab MCP Gateway instead of calling the provider directly.
"mcp_server": "https://mcp.ashlab.cloud",
"connection_id": "conn_abc123",
"endpoint": "https://api.openai.com/v1/chat/completions",
"auth_method": "api_key",
"gateway_token": "gw-eyJβ¦"
}
Route traffic through the gateway
Instead of calling your LLM provider directly, POST to the MCP bridge using your gateway token. The gateway forwards the call, handles auth, logs every request, and returns the response.
const mcpConfig = JSON.parse(YOUR_MCP_CONNECTION_STRING);
const response = await fetch(
mcpConfig.mcp_server + '/bridge/request',
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${mcpConfig.gateway_token}`
},
body: JSON.stringify({
connection_id: mcpConfig.connection_id,
method: 'POST',
body: { model: 'gpt-4o', messages: […] }
})
}
);
Automatic telemetry & governance
Every call routed through the gateway is automatically logged with token counts, latency, cost estimates, agent identity, and full prompt/response (if policy allows). Admins can revoke access at any time from the portal.
β Frequently Asked Questions
Will the gateway store my API key?
Does every call go through the AshLab server?
https://mcp.ashlab.cloud. The gateway forwards your request to the real LLM endpoint, injects the stored auth, and returns the response. This adds a small amount of latency (typically < 20 ms) but enables full observability.How long does approval take?
Can I test the connection before my agent is in production?
π New Connection Request
β
Request submitted successfully!
An admin will review your request. Check the Pending Approvals tab for status updates.
β Submission failed
The full URL the gateway will forward calls to.
Leave blank β Authorization: Bearer [YOUR_KEY]
βΉοΈ What happens after you submit:
- Your request enters the Pending Approval queue β visible to AshLab admins.
- Your credentials are encrypted and stored in the gateway vault; they are never exposed again.
- Once approved, you receive an MCP connection string (JSON) via this portal.
- Use the connection string in your AI agent or test it in the Test Space.
- All calls routed through the gateway are logged with full telemetry (tokens, latency, cost).
AshLab AI Governance Platform — questions? Contact your enterprise admin or visit the portal.