Quickstart
Add the hosted Jupid MCP endpoint to an MCP-capable agent client.
This quickstart assumes you already have a Jupid account. The hosted MCP server URL is the same for everyone:
https://backend.jupid.com/mcpJupid MCP works with clients that support remote MCP over Streamable HTTP with OAuth. The client opens Jupid sign-in in the browser the first time it connects.
1. Add the server
Run:
claude mcp add --transport http jupid https://backend.jupid.com/mcpThen type /mcp in Claude Code and complete the OAuth flow.
Open Claude settings, go to Connectors, choose Add custom connector, and paste the Jupid MCP URL. Complete the Jupid sign-in flow when Claude opens the browser.
Claude Desktop remote connectors require a Claude plan that supports connectors.
Add this to your user or project .codex/config.toml:
[mcp_servers.jupid]
url = "https://backend.jupid.com/mcp"Then authenticate:
codex mcp login jupidOpen Cursor settings, go to MCP & Integrations, and add a new connector.
You can also add this to .cursor/mcp.json:
{
"mcpServers": {
"jupid": {
"url": "https://backend.jupid.com/mcp"
}
}
}For VS Code with GitHub Copilot, add this to .vscode/mcp.json in your
project, or open the Command Palette and run
MCP: Open User Configuration:
{
"servers": {
"jupid": {
"type": "http",
"url": "https://backend.jupid.com/mcp"
}
}
}Open connector settings in ChatGPT, add a custom MCP server, and paste the Jupid MCP URL. Complete the Jupid sign-in flow, then select the connector in Developer mode.
ChatGPT custom MCP connectors require a plan that supports connectors.
Open Windsurf settings, go to MCP, choose raw config, and add:
{
"mcpServers": {
"jupid": {
"serverUrl": "https://backend.jupid.com/mcp"
}
}
}Restart Windsurf after saving the config.
Most clients that support remote MCP over Streamable HTTP with OAuth will work: use the Jupid MCP URL as the server URL and choose Streamable HTTP transport. Complete the browser OAuth flow when the client asks you to sign in.
2. Verify the connection
Ask a question that requires Jupid data:
What data is connected to Jupid?Then try a finance question:
What was my biggest expense last month?The assistant should call Jupid MCP tools before answering. If it answers without using tools, check the client's MCP status view and reconnect Jupid, or see Troubleshooting.
Next steps
- Browse the tool catalog — every tool with inputs, outputs, and example questions.
- Billing changes, payment methods, and account settings stay in the Jupid web app; the MCP billing tool can only report status and return a link.
- To disconnect later, see Troubleshooting.