cdtm-mcp
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., "@cdtm-mcpfind CDTM people into agentic AI"
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.
cdtm-mcp
An MCP server for the CDTM Community Portal, so you can search CDTM students and alumni from Claude Code, Claude Desktop, or any other MCP client.
Instead of clicking through filter dropdowns, you just ask:
"find me CDTM people building AI agents who can help with fundraising"
and Claude figures out the right tags, queries the portal, and gives you names, headlines, and profile links.
Why I built this
Hi, I'm Hamza (Fall 2017, co-founder at ZenML). The community portal is genuinely useful — a few thousand people with skills, interests, and "can support with" tags — but I never remember to open it. I do live in Claude Code all day, so I wired the portal into it as an MCP server. Now finding "alumni in Munich who know venture capital and offer mentoring" is one sentence away, and Claude can cross-reference results with whatever else I'm working on.
If you find this useful, give it a star ⭐ — if enough people do, I'll ask the CDTM team for a proper way to integrate this into the internal app (API tokens instead of the cookie dance below).
Related MCP server: github-talent-mcp
Setup
You need Python 3.10+ and uv (or plain pip).
git clone https://github.com/htahir1/cdtm-mcp.git
cd cdtm-mcpGetting your session cookie
The portal sits behind oauth2-proxy, and there's no public API or token system (yet — see the star pitch above). So the server authenticates with your own browser session cookie:
Log in to internal.cdtm.com in your browser.
Open DevTools (F12) → Network tab → reload the page.
Click any request to internal.cdtm.com → Headers → find the
Cookierequest header.Copy the part that starts with
_HOST-oauth2-proxy=(it's long).Create a
.envfile in the repo root:
CDTM_COOKIE='_HOST-oauth2-proxy=<paste the value here>'The cookie expires after a while. When the tools start failing with an auth error, repeat the steps. .env is gitignored — keep it that way, this cookie is your login.
Registering with Claude Code
claude mcp add --scope user cdtm -- uv run --directory /path/to/cdtm-mcp python server.pyThat's it. Open a new Claude Code session and ask it something.
For Claude Desktop, add the equivalent command to your claude_desktop_config.json.
What it can do
Tool | What it does |
| Filter by name, skills, interests, "can support with", "looking for", companies, education, class, location. Paginated. |
| Browse the portal's tag taxonomy (110 skills, 134 interests, ~3000 companies, ...) |
| Full profile for one person: bio, tags, contact email |
| Re-fetch the tag list if it looks stale |
Example prompts that work well:
"find CDTM people into agentic AI"
"who from the Fall 2017 class is in Berlin?"
"alumni who can support with pitch feedback and know climate tech"
"pull the full profile for the person I just found"
How it works
Nothing fancy. The portal is a Next.js app whose search runs through its own JSON endpoint (/api/protected/directory?skills=414&interests=62&q=...). This server:
pulls the tag taxonomy (names → IDs) out of the
/homepage payload once per sessionresolves the human-readable tag names Claude picks into IDs
calls the directory endpoint and returns clean JSON
parses profile pages server-side for
get_member_profile
No scraping of anything you couldn't see in your own browser, no data stored anywhere.
A note on being a good citizen
This reads member-provided data through your own authenticated session. It's for finding people to talk to — not for bulk-exporting the directory or spamming anyone. Don't be that person.
This is an unofficial community project and isn't affiliated with the CDTM team. If they have any concerns about it, or want to talk about a proper API, I'm happy to hear from them.
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.
Related MCP Servers
Alicense-qualityBmaintenanceMCP server for the Crosmos memory layer, enabling semantic, keyword, and graph retrieval of memories, as well as storing content with automatic entity and relation extraction.Last updated412MIT- AlicenseAqualityCmaintenanceMCP server that searches, scores, and ranks GitHub developers for technical recruiting.Last updated83Apache 2.0
- Alicense-qualityBmaintenanceMCP server for searching and retrieving content from Igloo digital workplace instances. Enables AI assistants to search, fetch pages as Markdown, and look up member profiles via the Igloo API.Last updated4MIT
- Alicense-qualityDmaintenanceA production-ready MCP server that provides access to the German Bundestag's parliamentary documentation system (DIP API).Last updated1MIT
Related MCP Connectors
MCP server for AgentDocs (agentdocs.eu): read, search, write, comment on & share Markdown docs.
An MCP server for deep research or task groups
A MCP server built for developers enabling Git based project management with project and personal…
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/htahir1/cdtm-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server