{
"mcpServers": {
"pleasanter-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 289 days ago. 7 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Pleasanter Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Implem.Pleasanter統合のためのModel Context Protocol (MCP)サーバーです。AIアシスタントがPleasanterのプロジェクトや課題を操作できるようになります。
サーバーコードのクローンまたはダウンロード
cd pleasanter-mcp-server
依存関係のインストール
npm install
サーバーのビルド
npm run build
以下の環境でビルドと動作確認が完了しています:
環境ファイルの作成
cp .env.example .env
設定の編集
# 必須設定
PLEASANTER_BASE_URL=http://10.255.20.80:50001 # ローカルネットワーク内のPleasanterサーバー
PLEASANTER_API_KEY=your-api-key-here # PleasanterのAPIキー
# オプション設定
PLEASANTER_TIMEOUT=30000
PLEASANTER_RETRIES=3
LOG_LEVEL=info
注意:
Pleasanter APIキーの取得
Claude Desktop設定に追加
~/Library/Application Support/Claude/claude_desktop_config.json を編集:
{
"mcpServers": {
"pleasanter": {
"command": "node",
"args": ["/path/to/pleasanter-mcp-server/dist/index.js"],
"env": {
"PLEASANTER_BASE_URL": "https://your-pleasanter-server.com",
"PLEASANTER_API_KEY": "your-api-key-here"
}
}
}
}
Claude Desktop設定に追加
%APPDATA%\Claude\claude_desktop_config.json を編集:
オプション1: WSLコマンドを使用(推奨)
{
"mcpServers": {
"pleasanter": {
"command": "wsl",
"args": [
"node",
"/home/ubuntu/github/Implem.Pleasanter/pleasanter-mcp-server/dist/index.js"
],
"env": {
"PLEASANTER_BASE_URL": "http://10.255.20.80:50001",
"PLEASANTER_API_KEY": "your-api-key-here",
"PLEASANTER_TIMEOUT": "30000",
"PLEASANTER_RETRIES": "3",
"LOG_LEVEL": "info"
}
}
}
}
オプション2: WSL2パスを直接指定
{
"mcpServers": {
"pleasanter": {
"command": "node",
"args": [
"\\\\wsl.localhost\\Ubuntu\\home\\ubuntu\\github\\Implem.Pleasanter\\pleasanter-mcp-server\\dist\\index.js"
],
"env": {
"PLEASANTER_BASE_URL": "http://10.255.20.80:50001",
"PLEASANTER_API_KEY": "your-api-key-here"
}
}
}
}
オプション3: Windows側にプロジェクトをコピーした場合
{
"mcpServers": {
"pleasanter": {
"command": "node",
"args": ["C:\\path\\to\\pleasanter-mcp-server\\dist\\index.js"],
"env": {
"PLEASANTER_BASE_URL": "http://10.255.20.80:50001",
"PLEASANTER_API_KEY": "your-api-key-here"
}
}
}
}
Claude Desktop設定に追加
~/.config/Claude/claude_desktop_config.json を編集:
{
"mcpServers": {
"pleasanter": {
"command": "node",
"args": ["/path/to/pleasanter-mcp-server/dist/index.js"],
"env": {
"PLEASANTER_BASE_URL": "https://your-pleasanter-server.com",
"PLEASANTER_API_KEY": "your-api-key-here"
}
}
}
}
Claude Desktopを再起動
接続を確認
Claude D