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.
If you use Claude on the web, no installer or config file needed.
- Open any Claude conversation and click Customize in the sidebar.
- Select Connectors, then click +.
- Enter
https://api.demiton.io/mcpand sign in.
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.
curl -fsSL https://raw.githubusercontent.com/demitonapp/claude-desktop-installer/main/install.sh | bash
irm https://raw.githubusercontent.com/demitonapp/claude-desktop-installer/main/install.ps1 | iex
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
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.
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
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 accountUpload 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 trialEvery 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.
ChatGPT supports MCP natively. No command-line setup needed - fill in three fields and ChatGPT handles the rest.
| Field | Value |
|---|---|
| Name | Demiton |
| Server URL | https://api.demiton.io/mcp |
| Authentication | OAuth |
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.