drio
Open app

erickwendel-contributions-mcp

Source

A Model Context Protocol (MCP) server that provides tools to query Erick Wendel's contributions across different platforms

Catalog onlyCatalog onlySTDIO

Overview

Erick Wendel Contributions is a Model Context Protocol (MCP) server that provides tools to query Erick Wendel's contributions across various platforms, including talks, blog posts, and videos using natural language.

To use this project, clone the repository from GitHub, install the dependencies, and run the server. You can then interact with the API using tools like Claude or Cursor to query contributions.

  • Built with Model Context Protocol (MCP) - Type-safe with TypeScript and Zod schema validation - Native TypeScript support in Node.js without transpilation - Generated SDK using GenQL - Modular architecture with separation of concerns - Standard I/O transport for easy integration - Structured error handling - Compatible with various AI tools like Claude Desktop and MCPHost.
  1. Querying the number of talks given in a specific year.
  2. Retrieving posts about specific topics like WebXR.
  3. Finding videos related to certain subjects.

Add to your AI client

Use these steps to connect erickwendel-contributions-mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "erickwendel-contributions-mcp-erickwendel": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-erickwendel-contributions-mcp-erickwendel"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "erickwendel-contributions-mcp-erickwendel": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-erickwendel-contributions-mcp-erickwendel"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "erickwendel-contributions-mcp-erickwendel": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-erickwendel-contributions-mcp-erickwendel"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "erickwendel-contributions-mcp-erickwendel": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-erickwendel-contributions-mcp-erickwendel"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "erickwendel-contributions-mcp-erickwendel": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-erickwendel-contributions-mcp-erickwendel"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "erickwendel-contributions-mcp-erickwendel": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-erickwendel-contributions-mcp-erickwendel"
      ]
    }
  }
}

FAQ

How can I install the server?

You can install it by cloning the repository and following the setup instructions provided in the documentation.

Is there a free alternative to use this project?

Yes! You can use MCPHost as a free alternative to interact with the MCP server.

What programming language is used?

The project is built using TypeScript.

erickwendel-contributions-mcp — MCP Registry