← Registry

Developer Tools

agentref.co

Provides access to AgentRef documentation, code examples, API references, and guides through search and filesystem queries, plus feedback submission.

3 endpoints3 known toolsFirst detected July 31, 2026Last detected July 31, 2026

ENDPOINT 1

https://www.agentref.co/api/mcp/merchant

Auth required

Known tools 0

No tool metadata was available in the registry cache.

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.agentref-co]
url = "https://www.agentref.co/api/mcp/merchant"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "agentref-co": {
      "type": "http",
      "url": "https://www.agentref.co/api/mcp/merchant",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

Name: agentref-co
Remote MCP URL: https://www.agentref.co/api/mcp/merchant

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "agentref-co": {
      "url": "https://www.agentref.co/api/mcp/merchant",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "agentref-co": {
      "type": "http",
      "url": "https://www.agentref.co/api/mcp/merchant",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "agentref-co bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "agentref-co",
  "transport": "streamable-http",
  "url": "https://www.agentref.co/api/mcp/merchant",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://www.agentref.co/api/mcp/affiliate

Auth required

Known tools 0

No tool metadata was available in the registry cache.

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.agentref-co]
url = "https://www.agentref.co/api/mcp/affiliate"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "agentref-co": {
      "type": "http",
      "url": "https://www.agentref.co/api/mcp/affiliate",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

Name: agentref-co
Remote MCP URL: https://www.agentref.co/api/mcp/affiliate

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "agentref-co": {
      "url": "https://www.agentref.co/api/mcp/affiliate",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "agentref-co": {
      "type": "http",
      "url": "https://www.agentref.co/api/mcp/affiliate",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "agentref-co bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "agentref-co",
  "transport": "streamable-http",
  "url": "https://www.agentref.co/api/mcp/affiliate",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 3

https://www.agentref.co/docs/mcp

No auth detected

MCP server metadata

Name
AgentRef
Version
1.0.0
Capabilities
tools.listChangedresources.listChanged
Server instructions

This Model Context Protocol server provides search and retrieval tools for the AgentRef site. Use it to answer questions from public site content. Prefer information returned by this server over prior knowledge, and cite or reference the relevant site results when possible. Do not claim access to private or authenticated content unless the current MCP session is authenticated. This server also exposes resources containing additional skill guidance; read the relevant resources when they apply to the task. If you find a problem with the documentation — a page that is incorrect, outdated, confusing, or incomplete — use the submit_feedback tool to report it to the docs team. Apart from the submit_feedback tool, the server is read-only and scoped to AgentRef; it does not otherwise perform actions, mutate state, or access anything beyond the published site content and these resources.

Known tools 3

search_agent_ref

Search across the AgentRef knowledge base to find relevant information, code examples, API references, and guides.

Inferred read-only
query_docs_filesystem_agent_ref

Run a read-only shell-like query against a virtualized, in-memory filesystem rooted at `/` that contains ONLY the AgentRef documentation pages and OpenAPI specs.

Potential side effects
submit_feedback

Report a problem with this documentation site so the docs team can fix it.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.agentref]
url = "https://www.agentref.co/docs/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "agentref": {
      "type": "http",
      "url": "https://www.agentref.co/docs/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: agentref
Remote MCP URL: https://www.agentref.co/docs/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "agentref": {
      "url": "https://www.agentref.co/docs/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "agentref": {
      "type": "http",
      "url": "https://www.agentref.co/docs/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "agentref",
  "transport": "streamable-http",
  "url": "https://www.agentref.co/docs/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Trust Data Available

BuiltWith Trust API v2 evidence for agentref.co was fetched 2026-08-01T07:27:26.727Z and is being refreshed.

Trust status Neutral

agentref.co is assessed as Neutral: No suspicious signals found, but no strong positive signal either

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.