Integrates with the JSer.info Product Name API hosted on Deno Deploy to retrieve product names and release information from URLs.
Enables access to JSer.info GitHub repositories for pulling source data, tracking issues, and contributing to the project.
Processes and parses Markdown content from JSer.info posts and documentation.
Enables installation and distribution of the MCP server through npm, with access to JSer.info npm packages.
Supports development workflows and testing through pnpm package management.
Leverages the TypeScript SDK for Model Context Protocol to provide a type-safe interface for JSer.info data.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@JSer.info MCP Serversearch for React hooks tutorials from the last month"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@jser/mcp
An MCP Server for JSer.info
Usage
VSCodeでの使い方
VSCodeでは、次のいずれかの方法でJSer.info MCPを利用できます:
リモートサーバーを利用する場合(推奨)
以下のいずれかの方法でリモートサーバーを追加できます:
方法1: コマンドラインから追加
方法2: settings.jsonに追加
VSCodeのsettings.jsonに以下の設定を追加します:
これで自動的にJSer.info MCPが利用可能になります。
ローカルサーバーを利用する場合
ターミナルで@jser/mcpを起動する
npx @jser/mcpVSCodeのコマンドパレットを開き(
Cmd+Shift+PまたはCtrl+Shift+P)、「MCP: Add Server...」を実行サーバーURLに
http://localhost:14561/mcpを入力して接続
利用できる機能
接続後、以下のツールが利用可能になります:
jser_search_items: タイトル、説明、URL、タグでアイテムを検索(複数キーワードでOR検索可能)jser_search_posts: タイトル、説明、URL、タグで投稿を検索jser_product_name: URLからプロダクト名を取得jser_week: 番号からJSer週を取得jser_weeks: 全てのJSer週を取得jser_weeks_between: 二つの日付の間のJSer週を取得jser_week_with_item_url: アイテムを含むJSer週を取得jser_item_with_item_url: URLからJSerアイテムを取得
利用できるtool
JSer.info MCPでは、次の tool が利用できます。
jser_search_items
タイトル、説明、URL、タグでアイテムを検索します。スペースで区切られた複数のキーワードをOR検索します。
パラメータ:
query: 検索クエリ(1-100文字)。スペースで区切られた複数のキーワードをOR検索limit: 返す結果の最大数(1-100、デフォルト: 10)offset: 結果のオフセット(0以上、デフォルト: 0)order: ソート順序desc: 新しい順(デフォルト)asc: 古い順
返り値:
アイテムの配列
title: アイテムのタイトルurl: アイテムのURLcontent: アイテムの説明文tags: タグの配列date: 登録日時relatedLinks: 関連リンクの配列
jser_search_posts
タイトル、説明、URL、タグで投稿を検索します。
パラメータ:
query: 検索クエリ(1-100文字)limit: 返す結果の最大数(1-100、デフォルト: 10)offset: 結果のオフセット(0以上、デフォルト: 0)sort: ソート順relevance: 関連度順(デフォルト)date: 日付順
order: ソート順序desc: 新しい順/関連度高順(デフォルト)asc: 古い順/関連度低順
返り値:
投稿の配列
title: 投稿のタイトルurl: 投稿のURLcontent: 投稿の内容tags: タグの配列date: 投稿日時
jser_product_name
URLからプロダクト名を取得します。
パラメータ:
url: 製品のURL(必須)
返り値:
製品情報のオブジェクト
name: プロダクト名url: 製品のURLreleaseNoteProbability: リリースノートである確率releaseNoteVersion: リリースノートのバージョン情報(該当する場合)releaseNoteURL: リリースノートのURL(該当する場合)
jser_week
番号からJSer週を取得します。
パラメータ:
number: JSer週の番号(必須)
返り値:
JSer週のオブジェクト
number: JSer週の番号startDate: 開始日endDate: 終了日items: その週のアイテムリストposts: その週の投稿リスト
jser_weeks
全てのJSer週を取得します。
返り値:
JSer週オブジェクトの配列
number: JSer週の番号startDate: 開始日endDate: 終了日items: その週のアイテムリストposts: その週の投稿リスト
jser_weeks_between
指定した期間のJSer週を取得します。
パラメータ:
beginDate: 期間の開始日(必須)endDate: 期間の終了日(必須)
返り値:
JSer週オブジェクトの配列
number: JSer週の番号startDate: 開始日endDate: 終了日items: その週のアイテムリストposts: その週の投稿リストitemsCount: アイテム数postsCount: 投稿数
jser_week_with_item_url
指定したURLのアイテムを含むJSer週を取得します。
パラメータ:
item_url: アイテムのURL(必須)
返り値:
JSer週のオブジェクト
number: JSer週の番号startDate: 開始日endDate: 終了日items: その週のアイテムリストposts: その週の投稿リスト
jser_item_with_item_url
指定したURLのアイテムを取得します。
パラメータ:
url: アイテムのURL(必須)
返り値:
アイテムのオブジェクト
title: タイトルurl: URLdescription: 説明tags: タグの配列date: 日付relatedLinks: 関連リンクの配列
Related MCP server: Salesforce MCP Server
Source
データの取得は@jser/data-fetcherを利用する
データ取得の感覚は最後に実行してから1分経過したら再取得する
つまり1分間はキャッシュのデータを利用する
検索にはDataSetを利用する
プロダクト名の検索にはJSer.info Product Name APIを利用する
データ抽出のロジックは @jser/stat を利用する。
Changelog
See Releases page.
Running tests
Install devDependencies and Run pnpm test:
Contributing
Pull requests and stars are always welcome.
For bugs and feature requests, please create an issue.
Fork it!
Create your feature branch:
git checkout -b my-new-featureCommit your changes:
git commit -am 'Add some feature'Push to the branch:
git push origin my-new-featureSubmit a pull request :D
Author
License
MIT © azu