Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"times-esa-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
このリポジトリは、VS Code内からesa.ioサービスに日報や投稿を作成・管理するためのModel Context Protocol (MCP) サーバーを実装したプロジェクトです。
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
Official Miro MCP server - Supports context to code and creating diagrams, docs, and data tables.
MCP Security Weekly
Get CVE alerts and security updates for Times_esa_mcp_server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
このリポジトリは、VS Code内からesa.ioサービスに日報や投稿を作成・管理するためのModel Context Protocol (MCP) サーバーを実装したプロジェクトです。
VS CodeのCopilot Agentは開発をサポートする強力なツールであり、多くの開発者がチャットでエージェントとやり取りする機会が増えています。開発中に生まれたアイデア、疑問点、作業内容などをその場でメモしたいという需要があります。
他のアプリケーションに切り替えてメモを取ることも可能ですが、エンジニアであればVS Codeから離れることなく、開発作業の流れを中断せずに日報やメモを残したいというニーズがあります。
本ツールは、MCPサーバーを通じてesa.ioにシームレスに日報を投稿できる機能を提供し、開発者の作業効率とドキュメンテーションの質を向上させることを目的としています。開発環境に統合された自然言語インターフェースを通じて、エディタから離れることなく日報投稿ができる点が特徴です。
関連するプロジェクトとして、以下のウェブアプリもご利用ください。
#times-esaコマンドによりesa.ioに日報を作成・更新以下のコマンドでMCPサーバーをインストールできます:
go install github.com/syou6162/times_esa_mcp_server
以下の環境変数を設定する必要があります:
export ESA_TEAM_NAME=your_team
export ESA_ACCESS_TOKEN=your_token
注意: ESA_ACCESS_TOKENには読み取り(read)と書き込み(write)の両方の権限が必要です。esa.ioの設定画面からアクセストークンを生成する際に、適切な権限を付与してください。
VS Codeでこのツールを使用するには、settings.jsonに以下の設定を追加してください:
{
"mcp": {
"servers": {
"times-esa-mcp-server": {
"command": "${env:HOME}/go/bin/times_esa_mcp_server",
"args": [],
"env": {
"ESA_TEAM_NAME": "YOUR_TEAM_NAME",
"ESA_ACCESS_TOKEN": "YOUR_ACCESS_TOKEN"
},
}
}
}
}