Skip to content

Connect your AI assistant

Pick your tool below. Each setup is under 2 minutes - paste a URL, sign in, you're done.

The same MarketBuddy MCP server works with every supported assistant. The URL is the same in every section below:

https://mcp.marketbuddy.com.au/mcp

You sign in with your normal MarketBuddy email and password - no separate account, no extra fee. MCP is included with every MarketBuddy plan, including the 14-day free trial.

ChatGPT

ChatGPT plan required

Custom connectors are available on ChatGPT Plus, Pro, Business, Enterprise, and Edu plans. They are not available on the free plan today. On Business, Enterprise, and Edu workspaces, only owners and admins can configure connectors.

  1. In ChatGPT, open SettingsAppsAdvanced and turn on Developer mode.
  2. Click Add custom connector (or Create).
  3. Fill in:
    • Name: MarketBuddy
    • Description: Australian commercial real estate listings and market data
    • MCP server URL: https://mcp.marketbuddy.com.au/mcp
    • Authentication: OAuth
  4. Click Create, sign in with your MarketBuddy account, and click Allow.
  5. In a new chat, click the + menu and turn on MarketBuddy for that conversation. Then ask:

    Use MarketBuddy to find retail listings in Fitzroy VIC under 150m².
    

Claude Desktop and Claude.ai

Claude plan required

Custom connectors are available on the Claude Free plan (limited to one connector) and on the Pro, Max, Team, and Enterprise plans. The same steps work for the Claude Desktop app and Claude.ai in your browser.

  1. In Claude, open CustomizeConnectors and click Add custom connector.
  2. Enter:
    • Name: MarketBuddy
    • URL: https://mcp.marketbuddy.com.au/mcp
  3. Click Add. Claude will open a browser tab - sign in with your MarketBuddy account and click Allow.
  4. Start a new conversation and ask:

    Using MarketBuddy, show me retail listings in Melbourne CBD under 100m².
    

The first time Claude calls MarketBuddy in a chat, it'll ask for permission. Click Allow (or Allow always to skip future prompts).

Microsoft Copilot Studio

Environment Maker role required

You need the Environment Maker security role to add tools to an agent in your Copilot Studio environment.

  1. Open Microsoft Copilot Studio and open the agent you want to add MarketBuddy to.
  2. Scroll to the Tools section and click Add toolNew tool.
  3. Select Model Context Protocol.
  4. Fill in:
    • Server name: MarketBuddy
    • Server description: Australian commercial real estate listings and market data
    • Server URL: https://mcp.marketbuddy.com.au/mcp
    • Authentication: OAuth 2.0
  5. For the OAuth 2.0 type, select Dynamic discovery.
  6. Click Create, then Create a new connection and click Add to agent.
  7. The first time the agent uses MarketBuddy, end users are prompted to sign in.

Cursor

  1. In Cursor, open Cursor SettingsFeaturesMCP.
  2. Click Add new MCP server and paste:

    {
      "mcpServers": {
        "marketbuddy": {
          "url": "https://mcp.marketbuddy.com.au/mcp"
        }
      }
    }
    
  3. Save, then click Connect next to the MarketBuddy server. Cursor opens a browser window - sign in with your MarketBuddy account and click Allow.

  4. In the Cursor chat panel, ask:

    Use the marketbuddy MCP server to find industrial listings in Dandenong VIC
    between 500 and 1500 square metres.
    

Claude Code

In your terminal:

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

Run /mcp in Claude Code and choose MarketBuddy to authenticate - Claude Code opens a browser tab for you to sign in and authorise access. After that, your session is remembered.

To remove the connector later:

claude mcp remove marketbuddy

Other MCP-compatible clients

Any client that supports MCP over streamable HTTP with OAuth 2.1 (PKCE + Dynamic Client Registration) can connect using the same URL:

  • Server URL: https://mcp.marketbuddy.com.au/mcp
  • Transport: Streamable HTTP
  • Authentication: OAuth 2.1 (interactive) or Authorization: Bearer pdj_<token> (programmatic)

For clients that only speak stdio, bridge through mcp-remote:

{
  "mcpServers": {
    "marketbuddy": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.marketbuddy.com.au/mcp"]
    }
  }
}

For automated workflows (n8n, Make, custom scripts), authenticate with a bearer token instead of the interactive OAuth flow - see Advanced: programmatic access.

What's next