Overview
Yuno provides both a local and remote MCP server for connecting AI development tools to the Yuno payment API. This guide covers configuration for each supported tool.Server Options
| Option | Description | Best For |
|---|---|---|
| Local (npx) | Runs on your machine | Individual developers |
| Remote (hosted) | Yuno-hosted MCP endpoint | Teams, CI/CD pipelines |
Local Server Setup
Installation
Running the Server
http://localhost:3100 and accepts MCP protocol connections.
Environment Configuration
Create a.env file in your project root:
Tool-Specific Configuration
Claude Code
Add the Yuno MCP server to your Claude Code configuration:Cursor
Configure in Cursor settings:Add Yuno MCP
Click Add Server and enter:
| Field | Value |
|---|---|
| Name | Yuno Payments |
| Command | npx @yuno-payments/mcp-server |
| Transport | stdio |
Windsurf
Add to your Windsurf MCP configuration:VS Code with Continue
Remote Server (Hosted)
For team environments, use Yuno’s hosted MCP endpoint:The remote MCP server connects directly to the Yuno sandbox API. No local server installation is needed. Ensure your network allows outbound HTTPS connections to
mcp.y.uno.Verifying the Connection
After configuration, test the connection:- Open your AI tool and start a new conversation
- Ask: “List available Yuno payment methods for Brazil”
- The AI should invoke the
get_payment_methodsMCP tool and return results
- Credentials are correct and for the sandbox environment
- The MCP server process is running (for local setup)
- Network connectivity to
mcp.y.uno(for remote setup) - Your AI tool supports MCP protocol
Troubleshooting
MCP server fails to start
MCP server fails to start
Check that Node.js 18+ is installed. Run
node --version to verify. Reinstall the package with npm install -g @yuno-payments/mcp-server.Authentication errors
Authentication errors
Verify your sandbox credentials are correct. Test them with a direct API call first:
AI tool does not see MCP tools
AI tool does not see MCP tools
Restart your AI tool after changing MCP configuration. Some tools require a full restart to detect new MCP servers.