Run this in your terminal. Claude will prompt you to authenticate via OAuth the first time you use a
Sevalla tool.
$ claude mcp add --transport http sevalla https://mcp.sevalla.com/mcp
Click the button to install, or add it to
.cursor/mcp.json
in your project. Cursor will prompt you to authenticate via OAuth on first use.
Add to Cursor
{
"mcpServers": {
"sevalla": {
"url": "https://mcp.sevalla.com/mcp"
}
}
}
Click the button to install, or add it to
.vscode/mcp.json
in your workspace. VS Code will prompt you to authenticate via OAuth on first use.
Add to VS Code
{
"servers": {
"sevalla": {
"type": "http",
"url": "https://mcp.sevalla.com/mcp"
}
}
}
Run this in your terminal, or add the block below to
~/.codex/config.toml. Codex prompts you to authenticate via OAuth on first use.
$ codex mcp add sevalla --url https://mcp.sevalla.com/mcp
[mcp_servers.sevalla]
url = "https://mcp.sevalla.com/mcp"
Add to your MCP configuration for the Copilot coding agent (repository
Settings → Copilot → Coding agent).
{
"mcpServers": {
"sevalla": {
"type": "http",
"url": "https://mcp.sevalla.com/mcp",
"tools": ["*"]
}
}
}
Run this in your terminal. Then run
/mcp in Droid
to complete the OAuth flow.
$ droid mcp add sevalla https://mcp.sevalla.com/mcp --type http
Add to
opencode.json
in your project or
~/.config/opencode/.
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"sevalla": {
"type": "remote",
"url": "https://mcp.sevalla.com/mcp",
"enabled": true
}
}
}
Most MCP clients use this shape. Point any streamable-HTTP client at the endpoint — it authenticates
over OAuth on first use.
{
"mcpServers": {
"sevalla": {
"url": "https://mcp.sevalla.com/mcp"
}
}
}