by esaio
Provides a Model Context Protocol server that enables AI assistants to interact with the esa.io knowledge base, allowing reading, creating, updating, and managing posts, comments, tags, categories, and attachments via standardized tools.
Enables AI assistants to seamlessly browse, create, modify, and organize content on the esa.io information‑sharing platform through a set of predefined MCP tools.
ESA_ACCESS_TOKEN (with required scopes) and optionally LANG for UI language.npx command (see configuration below).mcpServers in the client’s configuration file, pointing to the command and environment variables.esa_get_teams, esa_create_post, esa_get_comment, etc., to perform operations on esa.esa://teams/{teamName}/posts/recent.esa_summarize_post for structured summarization of articles.npx if Node.js is installed.read write or admin:comment read:post write:post read:category read:tag read:attachment read:team read:member.LANG environment variable (e.g., ja or en).esa_get_search_options_help, esa_get_markdown_syntax_help, and esa_search_help via the MCP client.日本語 | English
esa.io の公式 MCP(Model Context Protocol)サーバー(STDIO Transport 版)
AI アシスタントと情報共有サービス esa をつなぐ MCP サーバーです。Model Context Protocol 経由で、AI アシスタントから esa の記事を読んだり、作成・更新・管理などができます。
esa_get_teams - 所属している esa チームの一覧esa_get_team_stats - チームの統計情報(メンバー数、記事数、コメント数など)esa_get_team_tags - チーム内で使われているタグと使用回数esa_get_team_members - チームメンバーとその役割・プロフィールesa_search_posts - 記事を検索esa_get_post - 記事 ID から記事を取得esa_create_post - 新しい記事を作成(タグ、カテゴリー、WIP ステータス付き)esa_update_post - 記事を更新(タイトル、本文、タグ、カテゴリー、WIP ステータス)esa_archive_post - 記事をアーカイブ(Archived/ カテゴリーへ移動)esa_ship_post - 記事を Ship It!(WIP を外して公開)esa_duplicate_post - 記事を複製するための準備(タイトルと本文を取得)esa_get_comment - コメント ID からコメントを取得esa_create_comment - 記事にコメントを追加esa_update_comment - コメントを編集esa_delete_comment - コメントを削除esa_get_post_comments - 記事のコメント一覧(ページング対応)esa_get_team_comments - チーム全体のコメント一覧(ページング対応)esa_get_categories - 指定パス配下のカテゴリー一覧esa_get_top_categories - トップレベルのカテゴリー一覧esa_get_all_category_paths - チーム内の全カテゴリーパス一覧(記事数付き、フィルタリング対応)
prefix: "dev" で開発関連、match: "api" で API 関連を検索esa_get_attachment - 記事やコメントの添付ファイルを取得
esa_get_search_options_help - esa の検索構文ヘルプesa_get_markdown_syntax_help - esa の Markdown 記法ヘルプesa_search_help - esa のドキュメントから機能や用語を検索esa_recent_posts - 最近更新された記事の一覧
esa://teams/{teamName}/posts/recentesa_summarize_post - esa の記事を要約
MCP クライアントの設定ファイルに以下を追加します:
read write または admin:comment read:post write:post read:category read:tag read:attachment read:team read:memberclaude_desktop_config.json への追加方法:
{
"mcpServers": {
"esa": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"ESA_ACCESS_TOKEN",
"-e",
"LANG",
"ghcr.io/esaio/esa-mcp-server"
],
"env": {
"ESA_ACCESS_TOKEN": "your_personal_access_token",
"LANG": "ja"
}
}
}
}
{
"mcpServers": {
"esa": {
"command": "/Users/your-username/.nodenv/shims/npx",
"args": ["@esaio/esa-mcp-server"],
"env": {
"ESA_ACCESS_TOKEN": "your_personal_access_token",
"LANG": "ja"
}
}
}
}
注意:
/path/to/your/nodeはwhich nodeで調べたパスに置き換えてください。
Made with ❤️ by the esa team
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.
by cline
An autonomous coding assistant that can create and edit files, execute terminal commands, and interact with a browser directly from your IDE, operating step‑by‑step with explicit user permission.
by upstash
Provides up-to-date, version‑specific library documentation and code examples directly inside LLM prompts, eliminating outdated information and hallucinated APIs.
by daytonaio
Provides a secure, elastic infrastructure that creates isolated sandboxes for running AI‑generated code with sub‑90 ms startup, unlimited persistence, and OCI/Docker compatibility.
by continuedev
Enables faster shipping of code by integrating continuous AI agents across IDEs, terminals, and CI pipelines, offering chat, edit, autocomplete, and customizable agent workflows.
by github
Connects AI tools directly to GitHub, enabling natural‑language interactions for repository browsing, issue and pull‑request management, CI/CD monitoring, code‑security analysis, and team collaboration.
{
"mcpServers": {
"esa": {
"command": "npx",
"args": [
"@esaio/esa-mcp-server"
],
"env": {
"ESA_ACCESS_TOKEN": "<YOUR_ESA_ACCESS_TOKEN>",
"LANG": "en"
}
}
}
}claude mcp add esa npx @esaio/esa-mcp-server