Free MCP server: index a repo's files into the x402-codesearch Worker's search index.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A free MCP (Model Context Protocol) server that indexes a repo's files β
chunked and embedded β into the live semantic code search Worker, for free,
via one MCP tool: index_code.
This is the open funnel twin of a paid, x402-gated HTTP API:
x402-codesearch-poc.theliminalguy.workers.dev
β POST /search, $0.01 USDC on Base per query via the
x402 payment protocol, for the actual semantic search
step over an indexed repo.
Sibling packages like x402-repohealth-mcp
fully reimplement their paid Worker's logic locally (pure functions, no
external account-bound dependency) and expose the entire feature for
free via MCP.
This package cannot do that. The paid Worker's semantic search depends on two Cloudflare-account-bound bindings with no free, local, or portable equivalent:
@cf/baai/bge-base-en-v1.5) β generates the embeddingsBoth only exist inside the Worker's own Cloudflare account. There is no way to run them for free outside that account, so this MCP server does not try to fake or proxy them.
What genuinely is free is POST /index on the live Worker itself β the
step that chunks a file, embeds it, and upserts it into that Worker's own
Vectorize index. That's the one real, free, stateless capability this
package exposes as an MCP tool. The matching POST /search step stays
exactly where it already is: a real x402-gated HTTP call directly against
the live Worker.
One tool, index_code:
{ repoId: string, files: [{ path: string, content: string }] }POST https://x402-codesearch-poc.theliminalguy.workers.dev/index
(free, no payment) with that exact body.{ repoId, filesIndexed, chunksIndexed } plus a note field
reminding the caller that searching what was just indexed requires the
paid endpoint.It does not expose a search_code tool. Semantic search over data
indexed with this tool requires calling the x402-gated endpoint directly:
An unpaid request to /search returns 402 Payment Required with real
x402 payment instructions.
Or add it to an MCP client config (e.g. Claude Desktop's
claude_desktop_config.json):
index_codeInput:
Output (MCP tool text content, JSON-stringified):
src/client.ts and src/types.ts hold the thin HTTP client against the
live Worker's /index endpoint β src/index.ts is a thin MCP wrapper
around indexCode().
POST /index call this tool makes goes to the actual live
Worker, which really chunks the given files, really calls Workers AI for
embeddings, and really upserts into Vectorize β nothing here is mocked or
hardcoded. Verified end-to-end against the live Worker (see below).POST /index requires no payment and no API key β
confirmed live, not just documented.POST /search on the same
Worker. That's a deliberate scope boundary, not an oversight β see "Why
this one is different" above.index_code call re-POSTs to the live
Worker; re-indexing the same file just re-chunks/re-embeds/re-upserts it.Use POST /search on the live Worker instead of (in addition to) this MCP
server when:
index_code and now want to actually search
it semantically.x402-fetch / x402-axios) and
can pay $0.01 USDC on Base per query.index_code
tool shares the same free /index endpoint as every other caller, but
/search is metered per call regardless of caller.MIT
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/x402-codesearch-mcp)<a href="https://allmcps.com/mcp/x402-codesearch-mcp"><img src="https://allmcps.com/api/badge/x402-codesearch-mcp?style=directory" alt="X402 Codesearch MCP on AllMCPs" /></a>