WattScope

Connect WattScope

WattScope is a remote MCP connector. There is one URL, and there is no API key to copy, no credential to hand over, and nothing to paste into a configuration file. Adding it takes about a minute.

https://www.wattscope.com.au/mcp

Claude Desktop and claude.ai

Add a custom connector Free, Pro, Max

Customize Connectors + Add

Give it the name WattScope and the URL above. Claude will send you here to sign in and approve the connection, and will ask you to accept the terms once — and again only if they change. After that every connection is silent.

On the free plan you can have one custom connector at a time. The same steps work in Claude Desktop, on claude.ai and in the mobile apps: the connection is made from Anthropic's servers, not from your computer, so it follows your account rather than the device you set it up on.

Claude Team and Enterprise

An owner adds it once, for everyone Owner only

Organization settings Connectors Add Custom Web

On Team and Enterprise plans members cannot add connectors themselves. An Owner or Primary Owner adds WattScope once and it becomes available across the organization; each member still signs in individually the first time they use it, so usage stays attributed to the person who incurred it.

Everyone who signs in through the same organization sees the same workspace. If you belong to more than one, ask Claude to switch — see the documentation.

Claude Code

One command

claude mcp add --transport http wattscope https://www.wattscope.com.au/mcp

Then run /mcp, choose wattscope and authenticate. To share it with a repository rather than yourself, commit an .mcp.json at the project root:

{
  "mcpServers": {
    "wattscope": {
      "type": "http",
      "url": "https://www.wattscope.com.au/mcp"
    }
  }
}

Cursor

One click, or one file

Add to Cursor

The button opens Cursor and installs the connector. If you would rather do it by hand, add this to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "wattscope": {
      "url": "https://www.wattscope.com.au/mcp"
    }
  }
}

VS Code

Install link, or workspace config

Add to VS Code

Or add this to .vscode/mcp.json in your workspace:

{
  "servers": {
    "wattscope": {
      "type": "http",
      "url": "https://www.wattscope.com.au/mcp"
    }
  }
}

Codex CLI and IDE

Add a server, then log in

Add this to ~/.codex/config.toml:

[mcp_servers.wattscope]
url = "https://www.wattscope.com.au/mcp"

Then authenticate:

codex mcp login wattscope

Codex has not been tested against WattScope end to end. The protocol and the sign-in flow are the same ones Claude uses, so it is expected to work — but expected is not verified, and if it does not, tell us rather than assuming it is you.

What happens when you connect

Signing in creates your account on first use — there is nothing to set up beforehand. WattScope never receives a credential for any other service, and it cannot see your conversations: an MCP server is only sent the tool calls made to it, which is why usage has to be recorded deliberately rather than captured in the background.

Disconnecting in Claude stops new requests immediately. An access token that has already been issued stays valid until it expires; if you need one cut off sooner than that, tell us and we will do it.