Read our latest article: "devrel.directory is back"

devrel.directory

MCP server

Connect an AI agent to the devrel.directory MCP server to search listings, jobs, events, and docs.

devrel.directory runs a remote Model Context Protocol server so AI agents can query the directory, the job board, the events calendar, and the docs directly. It is read-only and unauthenticated: there is nothing to sign up for and no key to manage.

The server speaks Streamable HTTP at a single endpoint:

https://devrel.directory/mcp

Tools

The server exposes five tools. Every result carries a canonical devrel.directory URL alongside any external link, so an agent can always cite the source.

  • search_directory - search the listings of DevRel tools, communities, newsletters, podcasts, and agencies by query and/or category.
  • get_listing - full detail for one listing by slug, including similar listings and any open jobs or upcoming events cross-linked to the same company.
  • list_jobs - currently open DevRel roles, filterable by query, remote, and employment type, with salary passed through exactly as the posting states it.
  • list_events - DevRel conferences and their call-for-papers deadlines, with filters for upcoming-only and open-CFP-only.
  • search_docs - search the unified index of docs guides, blog posts, listings, and jobs.

Connect

Claude Code

claude mcp add --transport http devrel https://devrel.directory/mcp

Claude Desktop and Cursor

Add the server to your MCP configuration:

{
  "mcpServers": {
    "devrel": {
      "url": "https://devrel.directory/mcp"
    }
  }
}

Notes

The server is read-only: the tools only ever return data, and none of them mutate anything. It is unauthenticated and rate-limited per client, so keep requests reasonable. Legacy SSE transport is not supported; use Streamable HTTP.

On this page