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://mcp.agenticdeveloperhub.com/mcp
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 (
/…) - OpenAPI 3.1 spec — see the API reference
- Auth: JWT (email/password or OAuth)
Connect your client
Note
Mint an API token first: POST /auth/tokens with your JWT (or via the web
app's API-tokens screen). The raw value is shown once.
Claude Desktop
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://mcp.agenticdeveloperhub.com/mcp",
"headers": {
"Authorization": "Bearer <paste-token>"
}
}
}
}
Claude Code
From the command line:
claude mcp add --transport http agentic-developer-hub \
https://mcp.agenticdeveloperhub.com/mcp \
--header "Authorization: Bearer <paste-token>"
Cursor
Edit ~/.cursor/mcp.json (or Cursor Settings → MCP). Restart Cursor.
{
"mcpServers": {
"agentic-developer-hub": {
"url": "https://mcp.agenticdeveloperhub.com/mcp",
"headers": {
"Authorization": "Bearer <paste-token>"
}
}
}
}
MCP Inspector
For debugging — a web UI that lets you call tools by hand:
npx -y @modelcontextprotocol/inspector
Then connect with transport streamable-http, URL
https://mcp.agenticdeveloperhub.com/mcp, and an Authorization: Bearer …
header.
Tool surface
47 tools, scoped to the user behind the API token. Revoke a token to cut access immediately. Profile tools return only rows the acting agent has been granted read access to via the data bucket ACL.
Persona Storage · 19 tools
Key/value, lists, counters, memory, events, queues, and keyword tags — agent-managed structured state.
| Tool | Access |
|---|---|
dataKvGet |
Read |
dataKvSet |
Write |
dataKvDelete |
Write |
dataCounterGet |
Read |
dataCounterIncr |
Write |
dataListGet |
Read |
dataListAppend |
Write |
dataListRemove |
Write |
dataMemoryGet |
Read |
dataMemorySet |
Write |
dataEventAppend |
Write |
dataEventQuery |
Read |
dataQueueEnqueue |
Write |
dataQueueDequeue |
Write |
dataQueueAck |
Write |
dataQueueNack |
Write |
dataKeywordTag |
Write |
dataKeywordUntag |
Write |
dataKeywordSearch |
Read |
Discussions · 4 tools
Search and browse the community forum.
| Tool | Access |
|---|---|
searchThreads |
Read |
listCategories |
Read |
getMyBookmarks |
Read |
getRecentNotifications |
Read |
Profile · 11 tools
Your structured profile — jobs, education, locations, contacts, relationships, dates, tags, notes — plus categories and keyword lookups. Returns only rows the acting agent has been granted read access to via the data bucket ACL.
| Tool | Access |
|---|---|
getMyProfile |
Read |
getMyJobs |
Read |
getMyEducation |
Read |
getMyLocations |
Read |
getMyContacts |
Read |
getMyRelationships |
Read |
getMyTags |
Read |
getMyDates |
Read |
searchMyNotes |
Read |
getCategoryContents |
Read |
getKeywordsFor |
Read |
Personas · 2 tools
Discover personas visible to you.
| Tool | Access |
|---|---|
personasPersonaList |
Read |
personasPersonaGet |
Read |
Monitored Sites · 7 tools
Manage uptime monitors for your sites and HTTP endpoints.
| Tool | Access |
|---|---|
monitoredSiteList |
Read |
monitoredSiteAdd |
Write |
monitoredSiteRemove |
Write |
monitoredEndpointList |
Read |
monitoredEndpointAdd |
Write |
monitoredEndpointRemove |
Write |
monitoredEndpointStatus |
Read |
Projects · 4 tools
List projects and their work items, update a work item, and post a comment — the agent write surface for the Projects feature (acts as the token subject).
| Tool | Access |
|---|---|
projectListProjects |
Read |
projectListWorkItems |
Read |
projectUpdateWorkItem |
Write |
projectAddComment |
Write |
Details
| Transport | Streamable HTTP (stateless) |
| Endpoint | POST https://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 |