ContextBolt

Search your X, Reddit, and LinkedIn bookmarks from inside any MCP client.

Works with: Claude DesktopClaude CodeCursorWindsurfCline

How to install the ContextBolt MCP server

Add this to your Claude Desktop MCP configuration:

{
  "mcpServers": {
    "contextbolt": {
      "url": "https://api.contextbolt.app/mcp",
      "headers": { "Authorization": "Bearer YOUR_TOKEN" }
    }
  }
}

Add this to your Claude Code MCP configuration:

{
  "mcpServers": {
    "contextbolt": {
      "url": "https://api.contextbolt.app/mcp",
      "headers": { "Authorization": "Bearer YOUR_TOKEN" }
    }
  }
}

Add this to your Cursor MCP configuration:

{
  "mcpServers": {
    "contextbolt": {
      "url": "https://api.contextbolt.app/mcp",
      "headers": { "Authorization": "Bearer YOUR_TOKEN" }
    }
  }
}

Add this to your Windsurf MCP configuration:

{
  "mcpServers": {
    "contextbolt": {
      "url": "https://api.contextbolt.app/mcp",
      "headers": { "Authorization": "Bearer YOUR_TOKEN" }
    }
  }
}

Add this to your Cline MCP configuration:

{
  "mcpServers": {
    "contextbolt": {
      "url": "https://api.contextbolt.app/mcp",
      "headers": { "Authorization": "Bearer YOUR_TOKEN" }
    }
  }
}

ContextBolt captures every tweet, post, and article you bookmark across X, Reddit, and LinkedIn into a single semantically searchable library. The MCP endpoint exposes that library to any AI client that speaks Model Context Protocol, so Claude can pull from your saved knowledge mid-conversation without you context-switching to look things up.

This is the first MCP server purpose-built around social bookmarks. Most personal-knowledge MCPs assume you’ve manually written notes. ContextBolt assumes you’ve spent years bookmarking things you intended to remember and then forgot. The capture is automatic, the search is semantic, and the MCP makes the whole library available to your AI as a first-class memory layer.

Why this exists

Bookmarks are personal documentation, but only if you can find them again. The average X user has 2,000+ bookmarks and uses them like a black hole. Built-in search is keyword-only. There’s no tagging, no clustering, no way to ask “what did I save about pricing strategy six months ago?”.

The MCP endpoint solves the retrieval half. ContextBolt has already solved the capture half via the Chrome extension. Together they form an end-to-end memory layer for the AI clients you already use every day.

What Claude can do with it

Claude gets five MCP tools: semantic search across all bookmarks, list recent saves, save a new bookmark from inside a conversation, look up a specific URL, and pull topic clusters. Combine them in one prompt and Claude can do things like “find every save I have about competitor X, summarize the consensus, and bookmark this new tweet under the same topic”.

Practical patterns:

  • “What did I save last quarter about onboarding flows?” Claude pulls relevant saves and summarizes them.
  • “Add the top three threads I saved about AI agents to my Notion ‘AI Research’ database.” Combine ContextBolt MCP with the Notion MCP server in the same Claude Desktop session.
  • “I’m writing a post on context engineering. Pull every relevant save and cite the original authors.” ContextBolt returns the structured saves with URLs intact.

Gotchas

The MCP endpoint is rate-limited at 200 requests per hour per user. That covers normal usage by an order of magnitude but heavy automation might hit the cap. If you need more, contact us and we’ll discuss.

ContextBolt only sees bookmarks captured after you install the extension. We don’t backfill historical X bookmarks because the Twitter API charges for archive access and we haven’t found a free path. If a viable archive route opens up, we’ll add it.

Authentication uses a per-user bearer token. Don’t paste this into shared configs or commit it to public repos. If you suspect it’s leaked, regenerate it from the extension popup.

Example prompts for the ContextBolt MCP server

What did I save last month about pricing strategy?

Find LinkedIn posts I saved about cold outreach.

Summarize the threads I bookmarked on AI agents this week.

ContextBolt MCP server: FAQs

Is ContextBolt's MCP server free?

The Chrome extension is free with capture and local search. The MCP endpoint is on the Pro plan at $6/month. We chose the lowest practical tier so MCP isn't gatekept behind enterprise pricing.

Which clients can connect to it?

Anything that supports remote HTTP MCP servers. Claude Desktop, Claude Code, Cursor, Windsurf, and Cline all work today. The endpoint speaks standard MCP, so future clients should slot in without changes.

Where is my bookmark data stored?

On Cloudflare D1 in our EU region, plus a local copy in your browser via Dexie. Embeddings live in Vectorize. We never sell or share data with third parties. Privacy details are at /privacy/.

What can Claude actually do with it?

Five tools: search_bookmarks (semantic), list_recent, save_bookmark, get_bookmark_by_url, and get_clusters. Together they let Claude pull, summarize, cross-reference, and add to your library mid-conversation.

How do I get the MCP token?

Open the ContextBolt extension popup, upgrade to Pro, and copy the token from the MCP tab. Paste it into your client's MCP config. Setup takes about 60 seconds.