Provides OAuth-authenticated access to MyMLH, the student hacker profile system used by Major League Hacking. Exposes a single tool to fetch user profile data including education and employment history through the MyMLH API v4. Runs on Cloudflare Workers for edge deployment and handles token refresh automatically. Useful if you're building tools for MLH hackathon participants and need to pull their verified student data into an AI workflow. Ships with a public instance you can connect to immediately, or deploy your own. Supports streamable HTTP transport with OAuth, or stdio via mcp-remote for clients that don't handle OAuth flows.
A Model Context Protocol (MCP) server that provides secure, OAuth-authenticated access to MyMLH. This server enables AI assistants and MCP clients to interact with the MyMLH API on behalf of users.
You can connect to our publicly hosted instance using any MCP client that supports the Streamable HTTP transport with OAuth.
Endpoint: https://mymlh-mcp.git.ci/mcp
Example configuration snippets for common MCP clients:
VS Code:
{
"servers": {
"mymlh": {
"type": "http",
"url": "https://mymlh-mcp.git.ci/mcp"
}
}
}
Cursor and many clients:
{
"mcpServers": {
"mymlh": {
"url": "https://mymlh-mcp.git.ci/mcp"
}
}
}
Windsurf and many clients:
{
"mcpServers": {
"mymlh": {
"serverUrl": "https://mymlh-mcp.git.ci/mcp"
}
}
}
Augment Code:
{
"mcpServers": {
"mymlh": {
"url": "https://mymlh-mcp.git.ci/mcp",
"type": "http"
}
}
}
Claude Code:
claude mcp add --transport http mymlh https://mymlh-mcp.git.ci/mcp
Gemini CLI:
gemini mcp add --transport http mymlh https://mymlh-mcp.git.ci/mcp
Codex CLI:
codex mcp add mymlh --url https://mymlh-mcp.git.ci/mcp
Cline:
{
"mcpServers": {
"mymlh": {
"type": "streamableHttp",
"url": "https://mymlh-mcp.git.ci/mcp"
}
}
}
Roo Code:
{
"mcpServers": {
"mymlh": {
"type": "streamable-http",
"url": "https://mymlh-mcp.git.ci/mcp"
}
}
}
Other clients:
Consult your client's documentation for connecting to an MCP server. If you see 401 errors, the client likely does not support Streamable HTTP with OAuth and you will need to use the fallback option below.
For environments where Streamable HTTP with OAuth is not supported, you may fall back to stdio transport with mcp-remote. This wraps the HTTP MCP server into a local stdio interface, forwarding requests over HTTP behind the scenes to ensure compatibility.
Example mcp-remote configuration snippet:
{
"mcpServers": {
"mymlh": {
"command": "npx",
"args": [
"mcp-remote",
"https://mymlh-mcp.git.ci/mcp"
]
}
}
}
See mcp-remote documentation for more details on usage.
Once connected and authenticated, you can use the following tools:
| Tool | Description |
|---|---|
mymlh_get_user | Fetch current MyMLH user profile |
You can test the remote MCP server using the Model Context Protocol Inspector.
npx @modelcontextprotocol/inspector@latest
https://mymlh-mcp.git.ci/mcp and click "Connect".You can also test the server directly using the Cloudflare Workers AI LLM Playground.
https://mymlh-mcp.git.ci/mcpYou can interact with the MyMLH MCP server using natural language in your AI assistant:
For full control, you can deploy your own instance to Cloudflare. See the Deployment Guide for detailed instructions.
We welcome contributions! Whether you're fixing a bug, adding a feature, or improving documentation, your help is appreciated.
For development setup, project structure, how to add tools, and contributing guidelines, see CONTRIBUTING.md.
ray0907/git-mcp-server
cyanheads/git-mcp-server
io.github.b1ff/atlassian-dc-mcp-bitbucket
io.github.b1ff/atlassian-dc-mcp-jira
com.mcparmory/atlassian-jira
sirlordt/vscode-terminal-mcp