Skip to main content
Glama

Erick Wendel Contributions MCP

by ErickWendel

erickwendel-貢献-mcp

CIステータス

モデルコンテキストプロトコル(MCP)サーバー。Erick Wendelの貢献を様々なプラットフォームでクエリするためのツールを提供します。Claude、Cursor、または類似のツールを使って、自然言語で講演、ブログ投稿、動画を検索できます。このプロジェクトは、 Cursor IDEのデフォルトエージェント(試用版)を使用して構築されました。

この MCP サーバーは、直接統合のためにSmitheryでも利用できます。

利用可能なツール

この MCP サーバーは、API と対話するための次のツールを提供します。

  • get-talks : オプションのフィルタリングを使用して、ページ分けされた講演のリストを取得します。
    • ID、タイトル、言語、都市、国、年によるフィルタリングをサポート
    • 言語、国、都市ごとにグループ化されたカウントを返すことができます
  • get-posts : オプションのフィルタリングとページ区切りを使用して投稿を取得します
    • ID、タイトル、言語、ポータルによるフィルタリングをサポート
  • get-videos : オプションのフィルタリングとページ区切りを使用してビデオを取得します
    • ID、タイトル、言語によるフィルタリングをサポート
  • check-status : APIが稼働していて応答しているかどうかを確認する

AIツールとの統合

MCP サーバーの機能の検査

Smithery を使用してこの MCP サーバーの機能を調べることができます。

npx -y @smithery/cli@latest inspect @ErickWendel/erickwendel-contributions-mcp

これにより、利用可能なすべてのツール、そのパラメーター、および使用方法が表示されます。

設定

  1. Node.js v23以降を使用していることを確認してください
node -v #v23.9.0
  1. このリポジトリをクローンします:
git clone https://github.com/erickwendel/erickwendel-contributions-mcp.git cd erickwendel-contributions-mcp
  1. 依存関係を復元します。
npm ci

AIツールとの統合

カーソルの設定

  1. カーソル設定を開く
  2. MCPセクションへ移動
  3. 「新しいMCPサーバーを追加」をクリックします
  4. サーバーを構成します。
    Name = erickwendel-contributions Type = command Command = node ABSOLUTE_PATH_TO_PROJECT/src/index.ts
    またはSmitheryから実行することを好む場合
    Name = erickwendel-contributions Type = command Command = npm exec -- @smithery/cli@latest run @ErickWendel/erickwendel-contributions-mcp

または、 ~/.cursor/mcp.jsonにあるカーソルのグローバル MCP ファイルから直接構成し、以下を追加します。

{ "mcpServers": { "erickwendel-contributions": { "command": "node", "args": ["ABSOLUTE_PATH_TO_PROJECT/src/index.ts"] } } }

またはSmitheryから実行することを好む場合

{ "mcpServers": { "erickwendel-contributions": { "command": "npm", "args": [ "exec", "--", "@smithery/cli@latest", "run", "@ErickWendel/erickwendel-contributions-mcp" ] } } }
  1. 左下のドロップダウンから「エージェント」を選択して、カーソルチャットがエージェントモードになっていることを確認します。
  2. チャットに行って「2024年にJavaScriptに関するビデオは何本公開されましたか?」と質問してください

クロードデスクトップセットアップ

Smithery経由でインストール

Smithery経由で Claude Desktop 用の Erick Wendel Contributions を自動的にインストールするには:

npx -y @smithery/cli install @ErickWendel/erickwendel-contributions-mcp --client claude

:Claude の Smithery CLI インストールに現在問題が発生しています。問題が解決するまで、以下の手動インストール方法をご利用ください。

手動設定
  1. クロードの設定に移動
  2. 開発タブをクリックします
  3. 編集設定をクリック
  4. コードエディタで設定を開く
  5. Claude Desktop 構成に次の構成を追加します。
{ "mcpServers": { "erickwendel-contributions": { "command": "node", "args": ["ABSOLUTE_PATH_TO_PROJECT/src/index.ts"] } } }

またはSmitheryから実行することを好む場合

{ "mcpServers": { "erickwendel-contributions": { "command": "npm", "args": [ "exec", "--", "@smithery/cli@latest", "run", "@ErickWendel/erickwendel-contributions-mcp" ] } } }
  1. ファイルを保存してClaude Desktopを再起動します
  2. もう一度開発タブを開き、次のように「実行中」状態になっているかどうかを確認します。

  1. チャットに行って「RAG に関するビデオはありますか?」と質問してください。

MCPHostを使用した無料の代替手段

Claude Desktop や Cursor にアクセスできない場合は、無料の代替手段として Ollama と連携したMCPHost を利用できます。MCPHost は、大規模言語モデルが MCP サーバーと連携できるようにする CLI ツールです。

  1. MCPHost をインストールします。
go install github.com/mark3labs/mcphost@latest
  1. 設定ファイルを作成します (例: ./mcp.jsonc ):
{ "mcpServers": { "erickwendel-contributions": { "command": "node", "args": ["ABSOLUTE_PATH_TO_PROJECT/src/index.ts"] } } }

またはSmitheryから実行することを好む場合

{ "mcpServers": { "erickwendel-contributions": { "command": "npm", "args": [ "exec", "--", "@smithery/cli@latest", "run", "@ErickWendel/erickwendel-contributions-mcp" ] } } }
  1. 好みの Ollama モデルで MCPHost を実行します。
ollama pull MODEL_NAME mcphost --config ./mcp.jsonc -m ollama:MODEL_NAME

クエリの例

Claude、Cursor、または MCP クライアントに尋ねることができるクエリの例をいくつか示します。

  1. 「2023年に何回講演が行われましたか?」

  1. 「スペイン語の講演を見せてください」

  1. 「WebXRに関する投稿を探す」

発達

特徴

  • モデルコンテキストプロトコル(MCP)で構築
  • TypeScript と Zod スキーマ検証による型安全
  • Node.js でトランスパイルなしでネイティブ TypeScript をサポート
  • GenQLを使用して生成されたSDK
  • 関心の分離を伴うモジュラーアーキテクチャ
  • 簡単に統合できる標準I/Oトランスポート
  • 構造化されたエラー処理
  • Claude Desktop、Cursor、 MCPHost (無料の代替品)と互換性があります

注: このプロジェクトでは、昨年追加されたネイティブ TypeScript サポートを使用するため、Node.js v23 以降が必要です。

建築

コードベースはモジュール構造に従います。

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

テスト

テスト スイートを実行するには:

npm test

ウォッチ付き開発モードの場合:

npm run test:dev

貢献

貢献を歓迎します!お気軽にプルリクエストを送信してください。

著者

エリック・ウェンデル

ライセンス

このプロジェクトは MIT ライセンスに基づいてライセンスされています - 詳細についてはLICENSEファイルを参照してください。

-
security - not tested
A
license - permissive license
-
quality - not tested

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

AI エージェントが自然言語を使用して、さまざまなプラットフォーム上の Erick Wendel の講演、ブログ投稿、ビデオをクエリできるようにするモデル コンテキスト プロトコル サーバー。

  1. 利用可能なツール
    1. AIツールとの統合
      1. MCP サーバーの機能の検査
      2. 設定
      3. AIツールとの統合
      4. クエリの例
    2. 発達
      1. 特徴
      2. 建築
      3. テスト
      4. 貢献
      5. 著者
      6. ライセンス

    Related MCP Servers

    • -
      security
      A
      license
      -
      quality
      A Model Context Protocol server enabling AI agents to access and manipulate ServiceNow data through natural language interactions, allowing users to search for records, update them, and manage scripts.
      Last updated -
      9
      Python
      MIT License
    • -
      security
      A
      license
      -
      quality
      A Model Context Protocol server that enables AI assistants like Claude to browse and analyze Reddit content, including searching subreddits, retrieving post details with comments, and viewing trending posts.
      Last updated -
      1
      Python
      MIT License
      • Apple
    • A
      security
      F
      license
      A
      quality
      A Model Context Protocol server that enables AI agents to generate, fetch, and manage UI components through natural language interactions.
      Last updated -
      3
      19
      4
      TypeScript
    • A
      security
      A
      license
      A
      quality
      A Model Context Protocol server implementation that enables AI assistants like Claude to perform Google searches and retrieve web data directly through natural language requests.
      Last updated -
      1
      75
      3
      TypeScript
      MIT License

    View all related MCP servers

    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/ErickWendel/erickwendel-contributions-mcp'

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