
Esa
- 61 repo stars
- Updated July 27, 2026
- esaio/esa-mcp-server
esa is a MCP server that connects your agent to esa.io team documentation over stdio with an access token.
About
The esa MCP server is the official Model Context Protocol bridge to esa.io, a Japanese-friendly team documentation and knowledge-sharing service. developers and small teams who already keep specs, ADRs, and runbooks in esa can register this server so agents pull the right page instead of stale copy-paste from chat history. Install via npm (@esaio/esa-mcp-server) or run the published OCI image, set ESA_ACCESS_TOKEN, and attach stdio in your MCP client. It is an integration layer—not a writing skill—so you still own editorial quality and permissions in esa itself. Use it during Build when docs and PM artifacts must stay aligned with code, and during Operate when agents need incident playbooks. Intermediate setup: you need an esa account, token scopes, and a working MCP host. Compared to generic file-based doc skills, this server speaks esa’s API directly for live team wikis.
- Official esa.io MCP server (v0.9.2) with stdio transport via npm or OCI container
- Authenticated access through ESA_ACCESS_TOKEN against the esa.io API
- Fits team documentation sharing workflows—search and manage esa pages from Claude Code, Cursor, or Codex
- Dual distribution: @esaio/esa-mcp-server on npm and ghcr.io/esaio/esa-mcp-server image
- stdio-only local wiring—no remote URL in server manifest
Esa by the numbers
- Data as of Jul 28, 2026 (Skillselion catalog sync)
claude mcp add --env ESA_ACCESS_TOKEN=YOUR_ESA_ACCESS_TOKEN esa -- npx -y @esaio/esa-mcp-serverAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 61 |
|---|---|
| Package | @esaio/esa-mcp-server |
| Transport | STDIO |
| Auth | Required |
| Last updated | July 27, 2026 |
| Repository | esaio/esa-mcp-server ↗ |
What it does
Let your coding agent search, read, and update team wikis on esa.io without leaving the chat.
Who is it for?
Best when you centralize specs and runbooks on esa.io and want Claude Code or Cursor to read and act on that canon.
Skip if: Skip if you do not use esa.io, or anyone and needs offline-only markdown without API credentials.
What you get
After install, your agent can authenticate to esa.io and work against real team docs instead of guessing from memory.
- Registered stdio MCP server pointing at esa.io
- Agent-accessible esa workspace content via official API
- Repeatable doc lookup workflow without manual copy-paste
By the numbers
- Server version 0.9.2
- 2 published packages (npm @esaio/esa-mcp-server and OCI ghcr.io/esaio/esa-mcp-server:0.9.2)
- 1 required secret env var: ESA_ACCESS_TOKEN
README.md
esa MCP Server
日本語 | 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 から記事を取得(バックリンク総数backlinks_count、本文の文字数・行数body_md_statsを含む)esa_get_post_backlinks- 指定記事を参照している記事の一覧(ページング対応)esa_create_post- 新しい記事を作成(タグ、カテゴリー、WIP ステータス付き)esa_update_post- 記事を更新(タイトル、本文、タグ、カテゴリー、WIP ステータス)esa_append_post- 記事本文の末尾に追記(既存本文を取得せずに追記でき、新しいリビジョンとして保存)esa_prepend_post- 記事本文の先頭に追記(既存本文を取得せずに追記でき、新しいリビジョンとして保存)
記事の操作
esa_archive_post- 記事をアーカイブ(Archived/ カテゴリーへ移動)esa_ship_post- 記事を Ship It!(WIP を外して公開)esa_duplicate_post- 記事を複製(同じタイトル・本文の WIP 記事を作成。別チームへの複製も可能)
コメント管理
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- 記事やコメントの添付ファイルを取得- サポート形式(JPEG, PNG, GIF, WebP)で 30MB 以下の画像は base64 エンコードで返却
- その他のファイル、大きな画像、または forceSignedUrl 指定時は署名付き URL(有効期限 5 分)を返却
ヘルプとドキュメント
esa_get_search_options_help- esa の検索構文ヘルプesa_get_markdown_syntax_help- esa の Markdown 記法ヘルプesa_search_help- esa のドキュメントから機能や用語を検索
リソース
esa_recent_posts- 最近更新された記事の一覧- テンプレート:
esa://teams/{teamName}/posts/recent - 戻り値: 最近更新された記事の JSON リスト
- テンプレート:
プロンプト
esa_summarize_post- esa の記事を要約- 入力: チーム名と記事 ID
- 出力: 記事の構造化された要約
MCP クライアントの設定
MCP クライアントの設定ファイルに以下を追加します:
用意する環境変数
- ESA_ACCESS_TOKEN: アクセストークン
- 必要なスコープ:
read writeまたはadmin:comment read:post write:post read:category read:tag read:attachment read:team read:member - PAT v2を推奨します。
- 必要なスコープ:
- LANG: UI の言語設定
Claude Desktop の例
claude_desktop_config.json への追加方法:
オプション 1: docker(推奨)
{
"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"
}
}
}
}
オプション 2: npx
{
"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で調べたパスに置き換えてください。
レジストリ
このパッケージはルート直下に registry.json を同梱しており、登録されているツール / リソース / プロンプトの一覧を公開しています。サーバーを起動せずにプログラムから読み取れます:
import registry from "@esaio/esa-mcp-server/registry.json" with { type: "json" };
スキーマ:
{
"tools": [{ "name": "esa_get_teams" }, "..."],
"resources": [
{ "name": "esa_recent_posts", "uriTemplate": "esa://teams/{teamName}/posts/recent" }
],
"prompts": [{ "name": "esa_summarize_post" }]
}
registry.json は npm run build:registry で生成され、登録内容と差分が出ると CI で fail します。
リンク
- esa.io - 情報共有サービス esa
- Model Context Protocol - MCP の詳細
- API ドキュメント - esa API リファレンス
- Claude Desktop - MCP 対応の AI アシスタント
サポート
- 📧 Support: Feedback Form
- 🐛 Issues: GitHub Issues
- 📖 Help: esa Docs
Made with ❤️ by the esa team
Recommended MCP Servers
How it compares
MCP integration to esa.io, not an agent skill that drafts documentation from scratch.
FAQ
Who is Esa MCP for?
Developers and small teams on Esa.io who want coding agents to search and use shared wiki pages during builds and incidents.
When should I use the Esa MCP server?
Use it whenever implementation, reviews, or ops work should cite current Esa pages rather than pasted excerpts.
How do I add Esa to my agent?
Install @Esaio/Esa-mcp-server or the ghcr.io OCI image, set ESA_ACCESS_TOKEN, and register the server as a stdio MCP entry in Claude Code, Cursor, or another MCP host.