pleasanter-mcp-server
Overview
Pleasanter MCP Server is a server application designed to facilitate the management and operation of Pleasanter, a platform for creating and managing applications.
To use Pleasanter MCP Server, clone the repository from GitHub, configure the server settings, and run the server to start managing your applications.
- Easy setup and configuration for application management - Supports multiple application instances - Provides a user-friendly interface for managing applications
- Managing multiple applications in a single environment.
- Streamlining application deployment and updates.
- Facilitating collaboration among development teams.
Add to your AI client
Use these steps to connect pleasanter-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"pleasanter-mcp-server-narita1980": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pleasanter-mcp-server-narita1980"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"pleasanter-mcp-server-narita1980": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pleasanter-mcp-server-narita1980"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"pleasanter-mcp-server-narita1980": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pleasanter-mcp-server-narita1980"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"pleasanter-mcp-server-narita1980": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pleasanter-mcp-server-narita1980"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"pleasanter-mcp-server-narita1980": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pleasanter-mcp-server-narita1980"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"pleasanter-mcp-server-narita1980": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-pleasanter-mcp-server-narita1980"
]
}
}
}FAQ
Is Pleasanter MCP Server free to use?
Yes! Pleasanter MCP Server is open-source and free to use under the MIT license.
Can I customize the server settings?
Yes! The server settings can be customized to fit your specific needs.
Where can I find the documentation?
Documentation is available in the GitHub repository.