Search local personals ads directly from Claude Desktop, Claude Code, OpenAI ChatGPT, or OpenClaw using the Model Context Protocol.
Choose your AI client and follow the steps to connect to the GetXPersonal MCP server.
In Claude Desktop, go to Settings → Developer → Edit Config. This opens claude_desktop_config.json.
Add the following inside the "mcpServers" object:
{
"mcpServers": {
"getxpersonal": {
"type": "streamable-http",
"url": "https://mcp.getxpersonal.com/ads"
}
}
}
Save the file and restart Claude Desktop. The GetXPersonal tools will appear in the tools menu.
Open your terminal and run:
claude mcp add getxpersonal \
--transport http \
https://mcp.getxpersonal.com/ads
The tools are immediately available. Verify with:
claude mcp list
In ChatGPT, open Settings → Connected apps → Add MCP server.
https://mcp.getxpersonal.com/ads
Click Connect. The GetXPersonal tools will appear when you start a new conversation.
OpenClaw is an open-source local AI assistant that connects to messaging apps like WhatsApp, Telegram, and Discord.
Since the GetXPersonal MCP server uses Streamable HTTP transport, you can connect it using OpenClaw's
MCP plugin or by configuring it directly in your openclaw.json.
Open your OpenClaw config file at ~/.openclaw/openclaw.json and add a mcpServers entry:
{
"mcpServers": {
"getxpersonal": {
"transport": "streamable-http",
"url": "https://mcp.getxpersonal.com/ads"
}
}
}
Restart your OpenClaw gateway so it picks up the new server:
openclaw gateway restart
Confirm the server is registered and tools are available:
openclaw mcp list
Use the OpenClaw CLI to add the server without editing files directly:
openclaw config set mcpServers.getxpersonal.transport "streamable-http"
openclaw config set mcpServers.getxpersonal.url "https://mcp.getxpersonal.com/ads"
Restart the gateway and verify as above.
If you're using the OpenClaw MCP Plugin for Streamable HTTP support, install it into your extensions directory:
cd ~/.openclaw/extensions/
git clone https://github.com/lunarpulse/openclaw-mcp-plugin.git mcp-integration
cd mcp-integration
npm install
Add GetXPersonal to the plugin's config in config/openclaw.plugin.json:
{
"mcpServers": {
"getxpersonal": {
"baseUrl": "https://mcp.getxpersonal.com/ads"
}
}
}
Restart the OpenClaw gateway: openclaw gateway restart
Any MCP-compatible client that supports Streamable HTTP transport can connect:
// Generic MCP client configuration
{
"name": "getxpersonal",
"transport": "streamable-http",
"url": "https://mcp.getxpersonal.com/ads"
}
No authentication is required. The server is publicly accessible with a rate limit of 10 requests/minute.
Once connected, your AI assistant can call the following tools to interact with the GetXPersonal ads database.
Try these once you're connected.