OroIntelDocs
For agents:start at/llms.txt·everything as Markdown at/llms-full.txt·or add theMCP server.

MCP server

Oro Intel exposes the same metered data layer as a streamable-HTTP MCP server, so an agent can call it as tools. Endpoint: https://api.oro-intel.com/mcp/. Connect by signing in with your Oro Intel account — no key to copy.

Keep the trailing slash

The MCP URL must end in a trailing slash: https://api.oro-intel.com/mcp/. Without it the transport won't connect.

How to connect

Claude (web & desktop)

Settings → Connectors → Add custom connector. Name it Oro Intel, paste https://api.oro-intel.com/mcp/, click Add, and sign in when prompted.

ChatGPT

Settings → Apps & Connectors → Advanced settings, enable Developer mode (Plus/Pro), then Create connector with the MCP server URL https://api.oro-intel.com/mcp/. Choose OAuth and sign in when prompted.

Gemini (via Gemini CLI)

~/.gemini/settings.json
{
  "mcpServers": {
    "oro-intel": { "httpUrl": "https://api.oro-intel.com/mcp/" }
  }
}

Restart the CLI and sign in in the browser window that opens on first use.

Claude Code

shell
claude mcp add --transport http oro-intel https://api.oro-intel.com/mcp/

Sign in in the browser window that opens. If no prompt appears, run /mcp inside Claude Code and pick oro-intel → Authenticate.

Codex

shell
codex mcp add oro-intel --url https://api.oro-intel.com/mcp/

Or add it to ~/.codex/config.toml:

~/.codex/config.toml
[mcp_servers.oro-intel]
url = "https://api.oro-intel.com/mcp/"

Cursor

Settings → MCP → Add new MCP server, or add this to .cursor/mcp.json:

.cursor/mcp.json
{
  "mcpServers": {
    "oro-intel": { "url": "https://api.oro-intel.com/mcp/" }
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json (headless key auth):

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "oro-intel": {
      "serverUrl": "https://api.oro-intel.com/mcp/",
      "headers": { "Authorization": "Bearer oro_YOUR_KEY" }
    }
  }
}

VS Code (Copilot agent mode)

Add to .vscode/mcp.json — VS Code prompts for the key and stores it securely:

.vscode/mcp.json
{
  "servers": {
    "oro-intel": {
      "type": "http",
      "url": "https://api.oro-intel.com/mcp/",
      "headers": { "Authorization": "Bearer ${input:oro_key}" }
    }
  },
  "inputs": [
    { "type": "promptString", "id": "oro_key",
      "description": "Oro Intel API key", "password": true }
  ]
}

Cline

MCP Servers → Remote Servers → Add, or use the generic config below with a bearer key.

Any other MCP client

MCP config
"oro-intel": {
  "type": "http",
  "url": "https://api.oro-intel.com/mcp/"
}

Add under mcpServers and sign in when prompted.

Programmatic access

Headless agents and scripts can authenticate with an API key as a bearer header instead of signing in — see the API reference for keys and per-call credit costs.

Tools

The MCP tools mirror the API endpoints one-to-one and carry the same credit costs (see the API table): oro_search_notices, oro_search_tenders, oro_lookup_company, oro_company_profile (flagship), oro_lookup_buyer, oro_buyer_profile, oro_bulk_export, oro_get_balance and more. Each tool description states its cost so the agent knows before it calls.

Runnable agent examples (LangChain, LlamaIndex, Vercel AI SDK, PydanticAI and more) are on GitHub. New to the API? See the quickstart.