Integrations

BLERBZ Agent And Platform Integrations

BLERBZ exposes OpenAPI, NLWeb /ask, MCP, markdown discovery files, repository rules, and sandbox documentation so AI agents can discover, cite, compare, and integrate with the AI news intelligence platform without guessing.

Open MCP docsOpenAPIAgentsDevelopers

Platform Matrix

Each platform entry states whether the support is official, compatible, or conditional so BLERBZ does not overclaim marketplace-specific support before a listing exists.

ChatGPT / custom GPTs

Compatible through OpenAPI actions and public docs. A dedicated ChatGPT app listing should be linked here only when it exists.

Use /openapi.json as the action contract, cite /privacy and /terms, and direct users to /pricing and /developers for access.

Claude Desktop / Claude.ai

Compatible through MCP clients and documented prompt/tool use. Official Claude.ai app support should not be claimed unless separately launched.

Add the MCP server URL https://www.blerbz.com/mcp in an MCP-compatible client and verify initialize, tools/list, and resources/list.

Cursor

Documented with repository rules and compatible with OpenAPI, SDK source, and MCP.

Read .cursor/rules/blerbz-news-api.mdc, /agents.md, /openapi.json, and /mcp/index.md before implementation.

VS Code

Compatible through OpenAPI clients, MCP extensions, and local repository guidance.

Use the OpenAPI description and MCP endpoint with a VS Code extension that supports those protocols.

Goose

Compatible with MCP-style server configuration where Goose supports remote HTTP MCP endpoints.

Configure a server named blerbz-news-intelligence with url https://www.blerbz.com/mcp.

Windsurf

Documented with repository rules and compatible with OpenAPI, SDK source, and MCP.

Read .windsurf/rules/blerbz-news-api.md and use /openapi.json for request and response shapes.

OpenAI function calling

Compatible through OpenAPI-derived tool definitions.

Generate tool definitions from /openapi.json and use typed ErrorResponse, cursor pagination, RateLimit-* headers, and Idempotency-Key for retry-safe mutations.

Anthropic tool use

Compatible through OpenAPI-derived tools or MCP clients.

Use /agents.md for behavior guidance and /mcp for MCP discovery where the runtime supports it.

Gemini function calling

Compatible through OpenAPI-derived function declarations.

Use /openapi.json, /docs/rate-limits, /docs/idempotency, and /docs/agent-error-recovery.

NLWeb

Supported through the public /ask endpoint.

POST a natural-language query to /ask and request application/json or text/event-stream depending on the client.

WebMCP

Documented for public discovery patterns.

Use /docs/webmcp, /ask, /mcp, /openapi.json, and the WebMCP metadata linked from the home overview and agent pages.

Config Snippets

Use these snippets as starting points and adjust to the client.

{
  "mcpServers": {
    "blerbz-news-intelligence": {
      "url": "https://www.blerbz.com/mcp"
    }
  }
}
curl -X POST "https://www.blerbz.com/ask" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"query":{"text":"What AI stories are trending on BLERBZ?"}}'