streamable-httpupdated 3mo ago
This is the public manifest repo for the Auxen MCP (Model Context Protocol) server. The server itself runs at https://api.auxen.ai/mcp — this repo exists so registries (Smithery, Glama, the official MCP registry) have a canonical place to read metadata from.
O que dá para fazer com Auxen?
Auxen MCP Server
This is the public manifest repo for the Auxen MCP (Model Context Protocol) server. The server itself runs at https://api.auxen.ai/mcp — this repo exists so registries (Smithery, Glama, the official MCP registry) have a canonical place to read metadata from.
Connect
The Auxen MCP server is a remote, StreamableHTTP server. Add it to your MCP client by URL:
https://api.auxen.ai/mcp
Authentication uses OAuth 2.1 + PKCE (recommended for browser-based clients) or a direct Auxen API key (auxen_live_* / auxen_test_*) sent as Authorization: Bearer <key>.
OAuth flow
The discovery metadata is at:
https://api.auxen.ai/.well-known/oauth-authorization-server(RFC 8414)https://api.auxen.ai/.well-known/oauth-protected-resource(RFC 9728)
Clients that support Dynamic Client Registration (RFC 7591) — including Claude.ai's Connectors Directory — can register themselves automatically. After registration the client redirects the user's browser to https://api.auxen.ai/oauth/authorize, the user logs in to Auxen and approves the connection on https://auxen.ai/oauth/authorize, and the client receives an authorization code that exchanges for an access token at https://api.auxen.ai/oauth/token.
Direct key (programmatic)
For agents that don't go through a browser, generate an auxen_live_* (or auxen_test_*) key at https://auxen.ai/dashboard/api-keys and send it as Authorization: Bearer <key> on every MCP call.
Tools
| Tool | Effect | Hint |
|---|---|---|
auxen_list_models |
List available models, optionally filtered by size | read-only |
auxen_get_instance_status |
Get status, endpoint, api_key for an instance | read-only |
auxen_list_instances |
List all instances on the account | read-only |
auxen_get_balance |
Read USD credits + active subscriptions | read-only |
auxen_provision_model |
Provision a new model instance — spends money | destructive |
auxen_destroy_instance |
Destroy an instance — irreversible | destructive |
What is Auxen?
Auxen provisions private, dedicated GPU instances running open-source models (Llama 3.1, Qwen 2.5, Mistral, Gemma 2, Phi-3). Each instance is fully private — no shared inference, no third-party routing. Pay-per-minute billing, no subscriptions.
For the human-facing documentation:
- Website: https://auxen.ai
- Architecture explainer: https://auxen.ai/architecture
- Agent reference: https://auxen.ai/agent-reference.md
- Concise reference for LLMs: https://auxen.ai/llms.txt
- OpenAPI 3.1 spec: https://api.auxen.ai/openapi.json
Support
- Email: hello@auxen.ai
- Status: https://status.auxen.ai
Instalação
Adicione Auxen ao seu cliente. Escolha o que você usa.
claude mcp add --transport http auxen https://api.auxen.ai/mcpcodex mcp add auxen --url https://api.auxen.ai/mcp{
"mcpServers": {
"auxen": {
"url": "https://api.auxen.ai/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"auxen": {
"type": "http",
"url": "https://api.auxen.ai/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"auxen": {
"url": "https://api.auxen.ai/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"auxen": {
"serverUrl": "https://api.auxen.ai/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
6 ferramentas
Auxen expõe 6 ferramentas a um agente conectado.
- auxen_list_models
- List available models, optionally filtered by size
- auxen_get_instance_status
- Get status, endpoint, api_key for an instance
- auxen_list_instances
- List all instances on the account
- auxen_get_balance
- Read USD credits + active subscriptions
- auxen_provision_model
- Provision a new model instance — **spends money**
- auxen_destroy_instance
- Destroy an instance — **irreversible**
Pontuação
63 / 100
Boa
- Documentação17/25
- Manutenção19/25
- Confiança9/20
- Capacidade6/15
- Instalação12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 93 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 6 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 1.0.2Mais recente | 18 de mai. de 2026 |
| 1.0.1 | 13 de mai. de 2026 |
| 1.0.0 | 11 de mai. de 2026 |