This guide walks you through adding OBI's MCP server to your AI assistant.
Claude Desktop is the recommended way to use OBI's MCP server.
Open your Claude Desktop configuration file:
# Open in your default editor
open ~/Library/Application\ Support/Claude/claude_desktop_config.json
# Or create if it doesn't exist
mkdir -p ~/Library/Application\ Support/Claude
touch ~/Library/Application\ Support/Claude/claude_desktop_config.json
# Located at
%APPDATA%\Claude\claude_desktop_config.json
Add the OBI MCP server to your configuration:
{
"mcpServers": {
"obi": {
"type": "http",
"url": "https://mcp.heyobi.com"
}
}
}
Quit and reopen Claude Desktop to load the new configuration.
When you first use an OBI tool, Claude will prompt you to authenticate:
Once authenticated, your session persists until you sign out.
For Claude Code, add OBI to your project or user settings:
{
"mcpServers": {
"obi": {
"type": "http",
"url": "https://mcp.heyobi.com"
}
}
}
{
"mcpServers": {
"obi": {
"type": "http",
"url": "https://mcp.heyobi.com"
}
}
}
| Property | Value |
|---|---|
| URL | https://mcp.heyobi.com |
| Transport | Streamable HTTP |
| Protocol Version | 2024-11-05 |
| Authentication | OAuth 2.0 |
Clients can discover server capabilities via the manifest:
curl https://mcp.heyobi.com/manifest
{
"name": "OBI",
"description": "AI-powered property intelligence",
"version": "1.0.0",
"protocol_version": "2024-11-05",
"authentication": {
"type": "oauth2",
"authorization_url": "https://app.heyobi.com/oauth/authorize",
"token_url": "https://oktnratupvznraxkclus.supabase.co/auth/v1/token",
"scopes": ["openid", "email", "profile"]
},
"tools": ["list_properties", "search_items", "add_item", "ask_obi", "identify_item"]
}
After setup, ask Claude to list your properties:
"What properties do I have in OBI?"
If configured correctly, Claude will use the list_properties tool and show your properties.
https://mcp.heyobi.com