streamable-httpupdated 1mo ago
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.
O que dá para fazer com mymlh mcp server?
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
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"
}
}
}
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.
- Run the Inspector from your terminal:
npx @modelcontextprotocol/inspector@latest - Enter the server URL:
https://mymlh-mcp.git.ci/mcpand click "Connect". - 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.
- Go to the playground link.
- Enter the server URL:
https://mymlh-mcp.git.ci/mcp - 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
Instalação
Adicione mymlh mcp server ao seu cliente. Escolha o que você usa.
claude mcp add --transport http mymlh-mcp-server https://mymlh-mcp.git.ci/mcpcodex mcp add mymlh-mcp-server --url https://mymlh-mcp.git.ci/mcp{
"mcpServers": {
"mymlh-mcp-server": {
"url": "https://mymlh-mcp.git.ci/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"mymlh-mcp-server": {
"type": "http",
"url": "https://mymlh-mcp.git.ci/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"mymlh-mcp-server": {
"url": "https://mymlh-mcp.git.ci/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mymlh-mcp-server": {
"serverUrl": "https://mymlh-mcp.git.ci/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
1 ferramenta
mymlh mcp server expõe uma ferramenta a um agente conectado.
- mymlh_get_user
- Fetch current MyMLH user profile
Pontuação
63 / 100
Boa
- Documentação25/25
- Manutenção16/25
- Confiança6/20
- Capacidade4/15
- Instalação12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 32 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 1 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 1.0.0Mais recente | 18 de set. de 2025 |