Demiton
Demiton
/ mcp
Claude · ChatGPT · OAuth 2.1

Connect Ask Demiton to your AI.

Ask more of every job.

Add Ask Demiton to Claude Desktop or ChatGPT. Once connected, your AI can query AusTender contract awards, ABR entity data, BOM weather, and CKAN open datasets - and your own uploaded contracts if you are on Insights. Sign-in is via OAuth; no API key needed.

Fastest: claude.ai in your browser

If you use Claude on the web, no installer or config file needed.

  1. Open any Claude conversation and click Customize in the sidebar.
  2. Select Connectors, then click +.
  3. Enter https://api.demiton.io/mcp and sign in.
Claude Desktop
One-line installer (recommended)

Paste one command in your terminal. The installer checks for Node.js, backs up your existing config, and merges the Demiton entry - without touching anything else.

macOS / Linux
curl -fsSL https://raw.githubusercontent.com/demitonapp/claude-desktop-installer/main/install.sh | bash
Windows (PowerShell)
irm https://raw.githubusercontent.com/demitonapp/claude-desktop-installer/main/install.ps1 | iex
github.com/demitonapp/claude-desktop-installer
or add to config manually
1

Open your Claude Desktop config file

In Claude Desktop, open Settings → Developer → Edit Config. This opens claude_desktop_config.json:

  • macOS - ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows - %APPDATA%\Claude\claude_desktop_config.json
2

Add the Ask Demiton server entry

Add this block under mcpServers:

{
  "mcpServers": {
    "demiton": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://api.demiton.io/mcp"
      ]
    }
  }
}

mcp-remote handles the OAuth flow. It runs via npx - no global install needed. The first time you use Ask Demiton, a browser window opens for sign-in. After that, the session persists automatically.

No API key, no Bearer token, no manual credential to manage.

3

Restart Claude Desktop and sign in

Restart Claude Desktop. demiton will appear in the connected-tools list. The first time you run a Demiton query, mcp-remote opens a browser window - sign in with your Demiton account (or create one; Public tier is free) and the OAuth consent screen confirms access. You will not be prompted again on the same machine.

Try one of these to confirm it is working:

  • Who won the last 10 AusTender piling contracts in Queensland?
  • What was the most recent RBA cash rate decision and what is the current target?
  • Which contractors have won the most TMR work in FY 2025-26 so far?
  • What's the BOM 7-day forecast for Brisbane and is it suitable for open earthworks?
  • Look up ABN 54000538689 against the Australian Business Register and confirm trading status.

Two access tiers

Public - free, OAuth sign-in
Read public datasets

AusTender contract awards and ATMs, ABR entity lookup, BOM weather, RBA statistics, and Australian CKAN open data. Free with a verified business email - no credit card. Sign up takes about 30 seconds.

Create a free account
Insights - AU$9,000 / year
Query your own contracts

Upload your contract history. Claude can cross-reference your schedule rates against AusTender awards, surface margin drift per job, and track your win rate by project type. Same OAuth sign-in - same mcp-remote config.

Start a 14-day trial
OAuth 2.1 on every call

Every Ask Demiton request is authenticated against your account. There is no anonymous access path. Demiton connects via the standard MCP protocol, so you can add it to any MCP-capable client today.

Connecting via ChatGPT

ChatGPT supports MCP natively. No command-line setup needed - fill in three fields and ChatGPT handles the rest.

FieldValue
NameDemiton
Server URLhttps://api.demiton.io/mcp
AuthenticationOAuth

Leave the advanced OAuth panel unchanged - ChatGPT auto-discovers the endpoints. Sign in with your Demiton account when the OAuth prompt appears.

Using Cursor, Claude Code, or another MCP client?

For headless clients (Cursor, Claude Code, CI pipelines), connect using a long-lived Demiton API key as a Bearer token.

Generate an API key at app.demiton.io/hq/api-keys, then configure your client with Authorization: Bearer dmtn_live_... and the MCP URL https://api.demiton.io/mcp. Same identity, same entitlements, same tool access as OAuth.