Integrations

Connect Jurnie to AI apps

Pick your app below and copy the matching setup. After you add Jurnie, the app will ask you to sign in and approve access.

Choose user or global setup when the app offers that option, so Jurnie is available across your projects.

Choose your app

Open the app you use below and follow its steps.

Claude Code

Run this command in your terminal:

claude mcp add --transport http jurnie --scope user https://www.jurnie.co/api/mcp

Then type /mcp in Claude Code and follow the sign-in prompt.

Claude Desktop

Open your Claude Desktop config file, paste this block, then restart Claude Desktop:

{
  "mcpServers": {
    "jurnie": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://www.jurnie.co/api/mcp"]
    }
  }
}
Cursor

Open Cursor's global MCP config at~/.cursor/mcp.json, paste this block, then restart Cursor:

{
  "mcpServers": {
    "jurnie": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://www.jurnie.co/api/mcp"]
    }
  }
}

When Cursor asks you to sign in, choose Jurnie and approve access.

Codex

Run this command in your terminal:

codex mcp add jurnie --url https://www.jurnie.co/api/mcp
codex mcp list

You can also add the same connection to your Codex user config at~/.codex/config.toml:

[mcp_servers.jurnie]
url = "https://www.jurnie.co/api/mcp"
VS Code / GitHub Copilot

In VS Code, open the Command Palette, runMCP: Open User Configurationthen paste this block:

{
  "servers": {
    "jurnie": {
      "type": "http",
      "url": "https://www.jurnie.co/api/mcp"
    }
  }
}
MCPOther AI apps

If the app asks for a URL, use this:

https://www.jurnie.co/api/mcp

If the app asks for JSON, try this block first:

{
  "mcpServers": {
    "jurnie": {
      "url": "https://www.jurnie.co/api/mcp"
    }
  }
}

If the app asks for a command, use this block instead:

{
  "mcpServers": {
    "jurnie": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://www.jurnie.co/api/mcp"]
    }
  }
}

Command-based connections may show as MCP CLI Proxyin Jurnie because the helper command is what signs in.

For headless agents, create an MCP access token in Jurnie Settings → Integrations and use this command-based config:

{
  "mcpServers": {
    "jurnie": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://www.jurnie.co/api/mcp",
        "--header",
        "Authorization: Bearer ${JURNIE_MCP_TOKEN}"
      ],
      "env": {
        "JURNIE_MCP_TOKEN": "jrn_mcp_..."
      }
    }
  }
}

Useful references

Troubleshooting

The app never opens sign-in

Check that you added the Jurnie URL or config block in the right place. If the app supports a refresh button, refresh the connection.

Cursor says Jurnie has no tools

Log out of the Jurnie connection in Cursor, remove it, restart Cursor, then add the Cursor config again.

Authorization fails

Sign in with the Jurnie account you want to use. If you picked the wrong account, disconnect the app in Jurnie Settings → Integrations and connect it again.

You want to disconnect an app

Open Jurnie Settings → Integrations and disconnect it from the connected apps list.

Related pages