Not a website — a tool surface
Agentic Developer Hub

MCP Server

A Model Context Protocol endpoint. Your AI agent connects here over Streamable HTTP and gets a curated set of tools to call against your authenticated data.

POST https://staging.mcp.agenticdeveloperhub.com/mcp Streamable HTTP

What this is

MCP is a protocol for AI agents to discover and call tools on a server. It's a sibling of the REST API, not a replacement.

MCP — this server

  • For LLM agents, not browsers
  • Single endpoint (POST /mcp)
  • JSON-RPC over HTTP
  • Tool discovery built in (tools/list)
  • Auth: Authorization: Bearer <api-token>

REST API

  • For humans and traditional clients
  • Resource-oriented (/api/...)
  • OpenAPI 3.1 spec
  • Interactive reference via Scalar
  • Auth: JWT (email/password or OAuth)

Connect your client

Mint an API token first: POST /api/auth/tokens with your JWT (or via the web app's API-tokens screen). The raw value is shown once.

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows). Restart Claude Desktop.

{
  "mcpServers": {
    "agentic-developer-hub": {
      "type": "streamable-http",
      "url": "https://staging.mcp.agenticdeveloperhub.com/mcp",
      "headers": {
        "Authorization": "Bearer <paste-token>"
      }
    }
  }
}

From the command line:

claude mcp add --transport http agentic-developer-hub \
  https://staging.mcp.agenticdeveloperhub.com/mcp \
  --header "Authorization: Bearer <paste-token>"

Edit ~/.cursor/mcp.json (or Cursor Settings → MCP). Restart Cursor.

{
  "mcpServers": {
    "agentic-developer-hub": {
      "url": "https://staging.mcp.agenticdeveloperhub.com/mcp",
      "headers": {
        "Authorization": "Bearer <paste-token>"
      }
    }
  }
}

For debugging — a web UI that lets you call tools by hand:

npx -y @modelcontextprotocol/inspector

Then connect with transport streamable-http, URL https://staging.mcp.agenticdeveloperhub.com/mcp, and an Authorization: Bearer ... header.

Tool surface

43 tools, scoped to the user behind the API token. Revoke a token to cut access immediately. Profile tools return only rows shared with the AI audience.

Persona Storage

19 tools

Key/value, lists, counters, memory, events, queues, and keyword tags — agent-managed structured state.

ReaddataKvGet WritedataKvSet WritedataKvDelete ReaddataListGet WritedataListAppend WritedataListRemove ReaddataCounterGet WritedataCounterIncr ReaddataMemoryGet WritedataMemorySet WritedataEventAppend ReaddataEventQuery WritedataQueueEnqueue WritedataQueueDequeue WritedataQueueAck WritedataQueueNack WritedataKeywordTag WritedataKeywordUntag ReaddataKeywordSearch

Discussions

4 tools

Search and browse the community forum.

ReadsearchThreads ReadlistCategories ReadgetMyBookmarks ReadgetRecentNotifications

Profile

11 tools

Your structured profile — jobs, education, locations, contacts, relationships, dates, tags, notes — plus categories and keyword lookups. Returns only rows you have shared with the AI audience.

ReadgetMyProfile ReadgetMyJobs ReadgetMyEducation ReadgetMyLocations ReadgetMyContacts ReadgetMyRelationships ReadgetMyTags ReadgetMyDates ReadsearchMyNotes ReadgetCategoryContents ReadgetKeywordsFor

Personas

2 tools

Discover personas visible to you.

ReadpersonasPersonaList ReadpersonasPersonaGet

Monitored Sites

7 tools

Manage uptime monitors for your sites and HTTP endpoints.

ReadmonitoredSiteList WritemonitoredSiteAdd WritemonitoredSiteRemove ReadmonitoredEndpointList WritemonitoredEndpointAdd WritemonitoredEndpointRemove ReadmonitoredEndpointStatus

Details

Transport
Streamable HTTP (stateless)
Endpoint
POST https://staging.mcp.agenticdeveloperhub.com/mcp
Auth
Authorization: Bearer <api-token>
Session
Stateless — each request re-validates the token
Data scope
Limited to the user the token belongs to