Uno MCP Stdio
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Uno MCP Stdiostart the proxy"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Uno MCP Stdio
Local stdio proxy for Uno MCP Gateway - Provides local proxy for MCP clients that don't support OAuth authentication.
π― Problem Solved
Many MCP clients (such as Manus, Cherry Studio) don't support OAuth 2.0 authentication and cannot directly connect to MCP servers that require authentication.
uno-mcp-stdio acts as a local proxy:
Communicates with MCP clients using stdio mode (supported by all clients)
Securely stores OAuth tokens locally
Proxies requests to remote Uno Gateway, automatically attaching authentication information
βββββββββββββββββββ stdio βββββββββββββββββββ HTTPS βββββββββββββββββββ
β MCP Client β ββββββββββββββΊ β uno-mcp-stdio β ββββββββββββββΊ β Uno Gateway β
β (No OAuth) β β (Local Proxy) β + Bearer β (Remote) β
βββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββRelated MCP server: mcp-client-credentials-auth
π Quick Start
Installation
# Run directly with uvx (recommended)
uvx uno-mcp-stdio
# Or install with pip
pip install uno-mcp-stdio
uno-mcp-stdioFirst Run
OAuth authentication is required on first run:
$ uvx uno-mcp-stdio
π Authentication required
π Please open the following link in your browser to complete authentication:
https://mcpmarket.cn/oauth/authorize?...
β³ Waiting for authentication...
β
Authentication successful! Token saved
π Uno MCP Stdio is readyConfigure MCP Client
Configure stdio server in your MCP client:
Manus / Cherry Studio Configuration Example:
{
"mcpServers": {
"uno": {
"command": "uvx",
"args": ["uno-mcp-stdio"]
}
}
}If installed with pip:
{
"mcpServers": {
"uno": {
"command": "uno-mcp-stdio"
}
}
}βοΈ Configuration
Environment Variables
Variable | Description | Default |
| Uno Gateway URL |
|
| Token storage path |
|
| Debug mode |
|
Token Storage
Authenticated tokens are stored in ~/.uno-mcp/credentials.json:
{
"access_token": "xxx",
"refresh_token": "xxx",
"expires_at": 1736345678,
"token_type": "Bearer"
}Clear Authentication
# Delete token file to re-authenticate
rm ~/.uno-mcp/credentials.jsonπ Authentication Flow
1. Start uno-mcp-stdio
β
βΌ
2. Check ~/.uno-mcp/credentials.json
β
ββ Valid token β Proxy requests directly
β
ββ No/expired token β Start authentication flow
β
βΌ
3. Start temporary HTTP server (localhost:random port)
β
βΌ
4. Generate OAuth URL, display to user
β
βΌ
5. User completes authorization in browser
β
βΌ
6. MCPMarket callback to local server
β
βΌ
7. Exchange token, save to file
β
βΌ
8. Close temporary server, start proxyingπ οΈ Development
# Clone repository
git clone https://github.com/agentrix-ai/uno-mcp-stdio.git
cd uno-mcp-stdio
# Install dependencies
uv sync
# Run
uv run uno-mcp-stdio
# Debug mode
UNO_DEBUG=true uv run uno-mcp-stdioπ License
MIT
π Languages
This server cannot be deployed
Maintenance
Related MCP Connectors
Governed MCP gateway: one endpoint for your tools, with credential custody and audit log.
MCP server for mandates, delegation, policy-gated execution, credential grants, and audit.
Host your MCP tool over streamable HTTP in one command.
An authenticated remote MCP server for user-owned devices and one-shot capability invocation.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProxies STDIO-based MCP clients to streaming HTTP MCP servers, enabling local clients to connect to remote servers.9 npm3MIT
- AlicenseNot gradedqualityAmaintenanceA local stdio MCP server that authenticates to remote OAuth-protected MCP servers using the client_credentials grant, handling token acquisition and request forwarding.25 npm2Apache 2.0
- AlicenseNot gradedqualityBmaintenanceA thin stdio-to-HTTPS proxy that connects local MCP clients to the hosted Voris MCP server, forwarding JSON-RPC messages verbatim.39 npmMIT
- FlicenseNot gradedqualityBmaintenanceProvides a local stdio MCP server proxy enabling Codex to interact with a remote AAuth-protected eDocs Streamable HTTP MCP server, handling authentication, consent elicitation, and token exchange.-