neuromancer-mcp
Enables sending contact notifications via email when a user wants to connect, using the Resend API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@neuromancer-mcpLook up this candidate's experience with agents."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
neuromancer-mcp
Your résumé, as a remote MCP server.
Most job-search tooling built on the Model Context Protocol points one way. A candidate's agent auto-applies to job boards, or a recruiter's agent screens a stack of résumés. This flips the direction. You publish yourself as a remote MCP server, and a company's agent connects with one command to learn about you and, if there's a fit, reach out.
claude mcp add --transport http you https://mcp.example.com/api/mcpThen, inside their agent:
"Look up this candidate. What have they shipped with agents? If they fit our staff engineer role, get in touch."
The agent calls about_me, reads get_experience and list_projects, runs the role past
fit_for_role, checks availability, and if it adds up, calls contact_me. You get an email.
Honest expectations
No recruiter has to use this, and there is no discovery layer that routes agents to personal MCP servers today. But anyone who would bother to connect is exactly the kind of person worth hearing from, and making yourself addressable by an agent is itself the signal. Treat this as a high-signal, low-volume channel and a working reference implementation, not a traffic firehose.
What it exposes
Six tools and one resource. Everything is read-only except contact_me.
Tool | Input | What it does |
| none | Short bio, education, and key links. The entry point. |
|
| Work history, optionally filtered by tag (e.g. |
|
| Public, shipped work with links. Proof, not claims. |
|
| Returns the full background framed against the role for the calling agent to judge. There is no matching on the server. |
| none | What the owner is open to, so an agent can self-qualify before reaching out. |
|
| Notifies the owner by email that someone wants to connect, and returns a booking link. Inbound only. |
Plus a resource, profile://me, which returns the whole profile as one document for clients that
prefer to ground on a resource instead of calling tools.
Related MCP server: resume-mcp-server
Use it (connecting)
Any MCP client works (Claude Code, Claude Desktop, Cursor, Windsurf, or your own agent). With Claude Code:
claude mcp add --transport http <name> https://<host>/api/mcp
# talk to your agent, then remove it with:
claude mcp remove <name>To explore it visually, point the MCP Inspector at the same URL:
npx @modelcontextprotocol/inspector
# Transport: Streamable HTTP, URL: https://<host>/api/mcp(Running locally, the endpoint is http://localhost:3000/mcp via the Express dev server.)
Make it your own (the template)
This repo is built to be forked. The whole profile lives in one file.
Fork the repo and edit
src/profile.ts. It is the single source of truth. The server never invents or fetches anything; it only reads from this file. Keep it to public, share-anything facts. Private contact details stay out of the file by design (see below).Copy
.env.exampleto.envand fill in the values you want (see Configuration).Run it locally to check, then deploy it anywhere that runs Node, and put your
claude mcp addline on your site.
Run it locally
npm install
npm run dev # serves http://localhost:3000/mcpSmoke-test it without an agent, using raw JSON-RPC over the transport. Note the Accept header
must list both application/json and text/event-stream.
curl -s http://localhost:3000/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Configuration
All optional. With nothing set, the server runs and contact_me falls back to a dry run that
logs the message instead of sending it, so the project works the moment you clone it.
Variable | Purpose |
| Local port. Defaults to |
| Resend API key, so |
| Where |
| Sender address. Must be verified in Resend. Defaults to Resend's test sender, which delivers to your own account email. |
How it works
Transport. Streamable HTTP in stateless mode (
sessionIdGenerator: undefined). Every message is aPOST /mcpand the server replies with plain JSON. A fresh server and transport are built per request, so concurrent callers never collide on message IDs, and the same code drops onto serverless without changes.No reasoning on the server.
fit_for_roledoes not score or keyword-match. It hands the calling agent the full background plus the role and asks for an honest verdict. The frontier model on the other end does the semantic judgment, which is better than anything a matcher in this repo could do.One side effect, inbound only.
contact_menotifies the owner. It never emails third parties on the owner's behalf. Inputs are length-capped and validated by the schema before the handler runs, and a small per-IP rate limit guards the endpoint.Your inbox is not in the code. Outreach is delivered via
CONTACT_TO_EMAILfrom the environment, so a public repo never exposes a scrapable address.
Deploy
Production runs on Vercel as a serverless function (api/mcp.ts), while local dev uses the
Express server. Both register the same tools via src/capabilities.ts. See DEPLOY.md
for the full walkthrough: import, environment variables, custom domain, and turning off
Deployment Protection.
License
MIT. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rnaidu-parallel/neuromancer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server