TalentMCP · Model Context Protocol
Connect your AI agent
Matt Das exposes a public, read-only MCP endpoint so your recruiting AI agent — Claude, ChatGPT, or any Model Context Protocol client — can pull structured career details directly, no scraping or copy-paste required.
The endpoint
https://mattdas.dev/mcp/publicOpen, unauthenticated, POST-only (streamable HTTP MCP transport).
What it exposes
get_career_packet
A curated career summary — background, highlights, and a projects section — as structured markdown.
get_story_bank_public
Reviewed STAR-style stories (situation, action, reflection, competency tags) suitable for behavioural screening.
Nothing else is reachable here — no contact lists, no private job-search data, no write access.
Add it to Claude or ChatGPT
- In your MCP client's connector / custom-connector settings, add a new remote MCP server.
- Paste the URL above (
https://mattdas.dev/mcp/public) as the server URL. No API key or token is needed. - Save and connect. Your agent will see the two tools listed above and can call them while helping you evaluate Matt Das.
Try it from a terminal
curl -sN https://mattdas.dev/mcp/public \
-H 'content-type: application/json' \
-H 'accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'