Skip to main content
Glama
ezequiel-da-silva

erickwendel-contributions-mcp

erickwendel-contributions-mcp

CI Status npm version npm downloads

A Model Context Protocol (MCP) server that exposes tools to query Erick Wendel's contributions across talks, blog posts, and videos. Use this server with MCP-aware clients such as Claude Desktop, Cursor, or any compatible MCP runtime.

Overview

  • Tools: get-talks, get-posts, get-videos, check-status

  • Prompts: find-content, summarize-activity

  • Resources: erickwendel://about, erickwendel://statistics

  • Built with: Node.js, TypeScript, MCP SDK, Zod

  • Requires: Node.js >=20.0.0

Related MCP server: MCP Docs RAG Server

Features

  • Query talks, posts, and videos using structured MCP tool calls

  • Support filtering by ID, title, language, city, country, year, and portal

  • Provide metadata and resource endpoints for server discovery

  • Enable prompt-driven queries for content search and high-level summaries

  • Run locally or consume directly from npm using npx

Install & Run Locally

git clone https://github.com/erickwendel/erickwendel-contributions-mcp.git
cd erickwendel-contributions-mcp
npm ci
npm start

npm start runs the server on STDIO using node --experimental-strip-types --no-warnings src/index.ts.

Available Scripts

  • npm start — Run the MCP server locally

  • npm run dev — Run the server with --inspect and file watching

  • npm run inspect — Inspect the MCP capabilities with the MCP Inspector

  • npm test — Run unit tests

  • npm run lint — Lint source and test files

  • npm run lint:fix — Fix lint issues where possible

Using the Published Package

Use this package directly without cloning the repository:

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

MCP Server Capabilities

Tools

  • get-talks

    • Filters: id, title, language, city, country, year

    • Supports pagination and grouped counts by language/country/city

  • get-posts

    • Filters: id, title, language, portal

    • Supports pagination

  • get-videos

    • Filters: id, title, language

    • Supports pagination

  • check-status

    • Confirms the server is alive and responding

Prompts

  • find-content

    • Build a query for talks, posts, or videos using topic and language filters

  • summarize-activity

    • Generate a summary of content activity, optionally filtered by year

Resources

  • erickwendel://about — Information about Erick Wendel and server metadata

  • erickwendel://statistics — Content statistics and recommended queries

MCP Client Integration

Cursor

Add or update ~/.cursor/mcp.json with:

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

For local development, point Cursor to the local project entry file:

{
  "mcpServers": {
    "erickwendel-contributions": {
      "command": "node",
      "args": ["--experimental-strip-types", "/absolute/path/to/project/src/index.ts"]
    }
  }
}

Claude Desktop

Add the same MCP server definition to ~/Library/Application Support/Claude/claude_desktop_config.json on macOS:

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

For local development, use the local project path instead of npx.

MCPHost with Ollama

If you prefer a free MCP runtime, use MCPHost together with Ollama:

go install github.com/mark3labs/mcphost@latest

Create a config file, for example ./mcp.jsonc:

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

Then run:

ollama pull MODEL_NAME
mcphost --config ./mcp.jsonc -m ollama:MODEL_NAME

Example Queries

Use your MCP client to ask questions such as:

  • "How many talks were given in 2023?"

  • "Show me talks in Spanish"

  • "Find posts about WebXR"

  • "List videos in Portuguese"

Development Notes

  • Entry point: src/index.ts

  • MCP server configuration: src/config/api.ts

  • Tools implementation: src/tools/talks.ts, src/tools/posts.ts, src/tools/videos.ts, src/tools/status.ts

  • GraphQL and type helpers: erickwendel-sdk/

Requirements

  • Node.js >=20.0.0

  • npm

License

MIT

  • Built with Model Context Protocol (MCP)

  • Full MCP Capabilities: Tools, Prompts, and Resources

  • 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 Claude Desktop, Cursor, and MCPHost (free alternative)

Note: This project requires Node.js v23+ as it uses the native TypeScript support added in the last year.

Architecture

The codebase follows a modular structure:

src/
  ├── config/      # Configuration settings
  ├── types/       # TypeScript interfaces and types
  ├── tools/       # MCP tool implementations
  ├── utils/       # Utility functions
  ├── services/    # API service layer
  └── index.ts     # Main entry point

Testing

To run the test suite:

npm test

For development mode with watch:

npm run test:dev

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Author

Erick Wendel

License

This project is licensed under the MIT License - see the LICENSE file for details.

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

View all related MCP servers

Related MCP Connectors

  • An MCP server that gives your AI access to the source code and docs of all public github repos

  • A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…

  • Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.

View all MCP Connectors

Latest Blog Posts

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/ezequiel-da-silva/erickwendel-contributions-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server