
Use Interview Truth From Your Favourite AI Agent (MCP)
We’ve launched an MCP (Model Context Protocol) server for Interview Truth. If you already use tools like Cursor, Claude Desktop, or other agents that support MCP, you can plug in our data and ask questions in natural language—without leaving your workflow.
This post is a short guide: what it is, how to get your key, and how to wire it up.
What you get
- Your agent talks to Interview Truth over a standard MCP connection.
- The server URL is public; only people with a valid voucher key can access your unlocked content.
- Traffic goes through https://interviewtruth.fyi/mcp
Your voucher key (from your unlock URL)
When you unlock Recent Questions, we give you a unique link that looks like this:
https://interviewtruth.fyi/recent-questions-unlocked/YOUR_TOKEN
The YOUR_TOKEN part is your voucher key: a short alphanumeric code (about 5–6 characters). It’s the same value you already use in the URL—copy that segment and use it as the bearer value below.
Tips
- Don’t share that link or token publicly if you want to keep access private.
- While you’re still getting used to it, you can add a short line at the end of your prompt—e.g. “Answer this using the Interview Truth MCP”—so the agent is more likely to call our tools instead of guessing from memory alone.
Add the MCP server in your app
Exact menus differ by product, but the idea is the same: add an MCP server with our URL and pass your token in the Authorization header.
Server URL: https://interviewtruth.fyi/mcp
Header: send your token as a voucher-style secret, for example:
Authorization: YOUR_TOKEN
(Some clients let you paste Bearer YOUR_TOKEN; if yours expects the word Bearer, use Authorization: Bearer YOUR_TOKEN—match whatever your agent’s MCP docs say.)
Example configuration (JSON shape)
Many tools let you paste JSON similar to this:
{ "mcpServers": { "interviewtruth": { "url": "https://interviewtruth.fyi/mcp", "headers": { "Authorization": "YOUR_TOKEN" } } } }
Replace YOUR_TOKEN with the alphanumeric code from your unlock URL.
Using it day to day
After the server is connected:
- Restart or reload the agent if the product requires it.
- In chat, ask for what you need in plain language—e.g. recent questions for a company, themes you care about, or help interpreting what you’re seeing—the agent will call Interview Truth through MCP when the tool is available.
If something fails, double-check the token (no extra slashes or spaces), the URL exactly as above, and that your unlock access is still valid.
Sample queries to try
Once MCP is connected, you can ask things like:
- Show me a list of companies available for interview preparation.
- What are some recent questions asked in Amazon interviews?
- What did Google ask in technical interviews in 2026?
- Summarize the hardest system design themes showing up in recent Meta interviews.
Phrasing can be loose—the agent maps your question to the tools it has.
Summary
| Item | Value |
|---|---|
| MCP URL | https://interviewtruth.fyi/mcp |
| Voucher key | The 5–6 character segment in /recent-questions-unlocked/… |
| Auth | Usually Authorization header with that token |
We’ll keep improving the tools exposed over MCP; if you’re on the unlock list, you’re already set up to try it as soon as your agent supports MCP.