Pavan Madduri — Personal Knowledge MCP Server
Provides tools to query live GitHub activity and statistics, including pull requests, profile stats, and contribution search.
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., "@Pavan Madduri — Personal Knowledge MCP ServerShow me Pavan's latest GitHub activity"
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.
Pavan Madduri — Personal Knowledge MCP Server
A Model Context Protocol (MCP) server that exposes my professional profile — certifications, industry articles, open source contributions, and live GitHub activity — as a queryable API for AI agents.
Why? Instead of a static resume, this is a Personal Knowledge API. Any AI agent (Claude, Gemini, Copilot) can query my career data in real-time. This is AI infrastructure, not just AI usage.
What's Inside
Resources (Static Data)
Resource URI | Description |
| Bio, links, expertise areas |
| CNCF Golden Kubestronaut (all 15 certs + LFCS) |
| 9 industry articles (CNCF Blog, IEEE ComSoc, CloudNativeNow, PlatformEngineering.com, d7y.io) |
| 26 PRs across 15 projects |
| Detailed CNCF project PRs |
| Detailed ASWF project PRs |
Tools (Dynamic Functions)
Tool | Description |
| Search contributions by project name |
| Search industry articles by keyword, category, or publication |
| Check expertise in a technical domain |
| Retrieve EB-1A extraordinary ability evidence |
| Live GitHub PR data via API |
| Live GitHub profile statistics |
| One-page comprehensive summary |
Related MCP server: GitHub MCP Server
Quick Start
Prerequisites
Python 3.11+
uv (recommended) or pip
Install & Run
# Clone
git clone https://github.com/pmady/pavan-profile-mcp.git
cd pavan-profile-mcp
# Option A: uv (recommended)
uv sync
uv run server.py
# Option B: pip
pip install -e .
python server.pyEnvironment Variables (Optional)
# For higher GitHub API rate limits (optional — works without it)
export GITHUB_TOKEN="ghp_your_token_here"Connect to Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"pavan_profile": {
"command": "uv",
"args": ["--directory", "/path/to/pavan-profile-mcp", "run", "server.py"]
}
}
}Restart Claude Desktop. You'll see the tools appear in the MCP panel.
Example Prompts
"What are Pavan's contributions to Dragonfly?"
"Show me his published articles on AI infrastructure"
"What EB-1A evidence does Pavan have for original contributions?"
"Get his latest GitHub activity"
"Does he have expertise in GPU scheduling?"
Connect to Other Clients
Cursor / Windsurf
Add to your MCP config:
{
"pavan_profile": {
"command": "uv",
"args": ["--directory", "/path/to/pavan-profile-mcp", "run", "server.py"]
}
}Render (Public Hosting)
One-Click Deploy:
This server deploys on Render with HTTP transport for remote access.
Live Production Server: https://pavan-profile-mcp.onrender.com/mcp
Connect any MCP client to the remote endpoint:
{
"mcpServers": {
"pavan_profile": {
"url": "https://pavan-profile-mcp.onrender.com/mcp"
}
}
}Manual deployment:
Fork this repo
Go to Render Dashboard
Click "New" → "Blueprint"
Connect your forked repo
Render auto-detects
render.yamland deploysYour MCP endpoint will be at
https://<your-service-name>.onrender.com/mcp
Architecture
AI Agent (Claude / Gemini / Copilot)
│
▼
┌─────────────────────────────┐
│ MCP Protocol (stdio/SSE) │
├─────────────────────────────┤
│ FastMCP Server │
│ │
│ Resources: │
│ ├── profile://about │
│ ├── profile://certs │
│ ├── profile://articles │
│ └── profile://oss-summary │
│ │
│ Tools: │
│ ├── search_contributions │
│ ├── search_articles │
│ ├── get_expertise │
│ ├── get_eb1a_evidence │
│ ├── get_github_activity ──┼──► GitHub API (live)
│ ├── get_github_stats ──┼──► GitHub API (live)
│ └── get_profile_summary │
│ │
│ Data: data/profile.json │
└─────────────────────────────┘Project Structure
pavan-profile-mcp/
├── server.py # MCP server — all resources and tools
├── data/
│ └── profile.json # Structured profile data (certs, articles, PRs)
├── Dockerfile # Railway/Render deployment
├── pyproject.toml # Python project config
├── SKILL.md # Smithery skill definition
├── smithery.yaml # Smithery.ai config
├── claude_desktop_config.example.json
├── README.md
└── LICENSEAbout the Author
Pavan Madduri — Senior DevOps/Platform Engineer
CNCF Golden Kubestronaut (all 15 CNCF certifications + LFCS)
Published author on CNCF Blog, IEEE ComSoc, CloudNativeNow, PlatformEngineering.com
26 PRs across 15 CNCF & ASWF projects (Dragonfly, Volcano, KEDA, Kubernetes, TiKV, OpenColorIO, and more)
Dragonfly Community Member (CNCF Incubating)
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityCmaintenanceAn MCP server that provides a structured API for AI agents to query a person's resume, including profile, projects, writing, and gated access to experience and skills.Last updated
- Flicense-qualityFmaintenanceA Model Context Protocol (MCP) server that connects Claude AI directly to the GitHub API, enabling natural language queries for live repository data, issues, PRs, and contributions.Last updated1
- Alicense-qualityAmaintenanceAggregates your digital footprint (GitHub, blogs, resume) into a single AI-readable profile and exposes it via MCP tools so AI agents can query your context live.Last updated1MIT
- Alicense-qualityDmaintenanceExposes a personalized AI agent that reads your resume and provides intelligent responses about your professional background through a standardized MCP server interface with RAG capabilities.Last updatedMIT
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
The personal context layer for AI: your profile and files, read by any MCP client over OAuth.
A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/pmady/pavan-profile-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server