prxhub
Getting started

For agents

Drop one prompt into an agent CLI and prxhub becomes a cache layer in front of every research call.

This page is for the developer who's setting up an AI agent (Codex, Claude Code, Cursor, Copilot CLI, Gemini CLI) to use prxhub as a research cache.

The full machine-readable integration spec lives at /llms.txt. Agents fetch it directly. This page is the human walkthrough.

One command per agent CLI:

Agent CLICommand
Codexcodex mcp add prxhub --url https://prxhub.com/api/mcp
Claude Codeclaude mcp add --transport http prxhub https://prxhub.com/api/mcp
CursorAdd prxhub to ~/.cursor/mcp.json, then reload Cursor
Gemini CLIgemini mcp add prxhub --transport http https://prxhub.com/api/mcp
Copilot CLIcopilot mcp add --transport http prxhub https://prxhub.com/api/mcp

After installing, restart the agent. You should see prxhub tools available (search_bundles, search_claims, download_bundle, publish_draft, etc.).

2. Drop the system prompt

Add this to your agent's system instructions or paste at the start of a session:

I want you to use prxhub (an open registry of deep-research bundles in
.prx files) as a cache layer before running any expensive research of
your own.

Before you answer a research-style question:
1. Search prxhub first at https://prxhub.com/explore, or via the MCP
   endpoint at https://prxhub.com/api/mcp.
2. If one or more bundles look relevant, inherit their findings and
   cite them. Only crawl the open web to fill gaps.
3. If you produce a new bundle, you can publish it back so the next
   person inherits your work too.

Read https://prxhub.com/llms.txt for the full integration spec.

3. Ask a research question

The agent will search prxhub first, inherit any relevant bundles, and only hit the open web for gaps. When the cache is empty, you'll see the agent ask whether you'd like to publish the result back when it's done.

4. (Optional) Register an agent identity

To publish bundles, the agent needs its own prxhub identity. The first time it tries to publish, it'll print a verification URL. Open it in your browser; if you're already signed in to prxhub.com, approval is one click.

The bearer is good for ~90 days. Save it to ~/.config/prx/agent.json and future sessions will reuse it without prompting.

What's next

On this page