Priya Gautam MCP Server
Exposes Priya Gautam's professional profile (skills, projects, experience, education) via MCP tools and dynamic context retrieval.
README
Priya Gautam MCP Server
An MCP (Model Context Protocol) server that exposes Priya Gautam's professional profile through tools, resources, prompts, and Dynamic Context Retrieval (DCR).
Screenshots
MCP Inspector v1.0.0

MCP Inspector v1.0.0

About ME


Source vs compiled code
src/*.ts= editable TypeScript source code.dist/*.js= compiled JavaScript generated from the TypeScript source.distis included in this ZIP so Node/Claude can run the server immediately after dependencies are installed.- Do not edit files inside
distmanually. Changesrc/*.tsand runnpm run buildagain.
Requirements
- Node.js 20+
- npm
Install
npm install
Verify TypeScript
npm run check
Build TypeScript -> JavaScript
npm run build
This generates:
dist/
├── dcr.js
├── index.js
├── profile.js
└── server.js
Run locally in STDIO mode
This is the recommended mode for local Claude Desktop / IDE MCP clients.
npm start
npm start runs node dist/index.js.
Claude Desktop configuration
Use the example in claude_desktop_config.example.json and replace the placeholder with the absolute path to this project's dist/index.js:
{
"mcpServers": {
"priya-gautam-mcp": {
"command": "node",
"args": [
"/ABSOLUTE/PATH/TO/MOJO/dist/index.js"
],
"env": {}
}
}
}
Do not point node directly at src/index.ts. Node runs the compiled dist/index.js.
Development mode
For development only:
npm run dev
This uses tsx watch src/index.ts.
HTTP mode
Run:
MCP_TRANSPORT=http npm run dev
The server exposes:
http://localhost:3000/health
http://localhost:3000/mcp
The /health endpoint is for a simple browser check. /mcp is an MCP protocol endpoint and should be tested using an MCP client or MCP Inspector, not by opening it as a normal webpage.
MCP tools
get-profileget-skillsget-projectsget-educationget-experiencelist-sectionssearch-priya-profile— primary DCR toolsearch-profile— backward-compatible aliasexplain-dcr
DCR
search-priya-profile ranks profile sections against the user's question and returns the most relevant context instead of returning the complete profile every time.
Example questions:
- What are Priya's technical skills?
- Tell me about Priya's WoodenScale experience.
- What projects has Priya built?
- What is Priya's educational background?
Important
Do not run npm run dev as the Claude Desktop production/local MCP command. Use npm start, which runs the compiled JavaScript entry point.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.