mymlh-mcp-server

mymlh-mcp-server

Enables AI assistants to securely access MyMLH user profiles, education, employment history, and other data via OAuth-authenticated HTTP.

Category
Visit Server

README

mymlh-mcp-server

Remote HTTP MCP Server Built for MyMLH Cloudflare Workers TypeScript Built with Hono MIT License CI

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.

Features

  • Secure Authentication: Implements MyMLH API v4 with OAuth for robust and secure user authentication.
  • User Data Access: Provides tools to fetch a user's MyMLH profile, education, employment history, and more.
  • Automatic Token Management: Handles token refresh and secure storage automatically.
  • Cloudflare Workers: Built to run on the edge for low-latency, scalable performance.
  • Easy Deployment: Can be deployed to your own Cloudflare account in minutes.

Quick Start

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

Add MCP Server

Install in VS Code Install in Cursor

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.

Fallback Option

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.

Available Tools

Once connected and authenticated, you can use the following tools:

Tool Description
mymlh_get_user Fetch current MyMLH user profile

Test with MCP Inspector

You can test the remote MCP server using the Model Context Protocol Inspector.

  1. Run the Inspector from your terminal:
    npx @modelcontextprotocol/inspector@latest
    
  2. Enter the server URL: https://mymlh-mcp.git.ci/mcp and click "Connect".
  3. Follow the authentication flow to connect and test the tools.

Testing with Cloudflare AI Playground

You can also test the server directly using the Cloudflare Workers AI LLM Playground.

  1. Go to the playground link.
  2. Enter the server URL: https://mymlh-mcp.git.ci/mcp
  3. Follow the authentication flow to connect and test the tools.

Example Usage

You can interact with the MyMLH MCP server using natural language in your AI assistant:

  • "Get my MyMLH user info."
  • "Show me my MyMLH profile."
  • "Generate a resume using my MyMLH profile."
  • "Create a GitHub profile README using my MyMLH data."

Deploying Your Own Instance

For full control, you can deploy your own instance to Cloudflare. See the Deployment Guide for detailed instructions.

Contributing

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.

License

MIT

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured