mcp-software-consultant
A CLI tool, MCP server, and vscode extension that allows Cline to ask an external specialized consultant for help
Overview
MCP Software Consultant is a command-line interface (CLI) tool that allows users to request advice from an external specialized software consultant seamlessly.
To use MCP Software Consultant, install it globally via npm and run commands through the command line to interact with the consultant.
- Command-line tool for quick access to expert advice. - Extensible with plugin capabilities. - User-friendly commands to facilitate interaction.
- Consulting on software architecture decisions.
- Assisting with debugging complex programming issues.
- Offering guidance on best practices in software development.
Add to your AI client
Use these steps to connect mcp-software-consultant 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": {
"mcp-software-consultant-delorenj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-software-consultant-delorenj"
]
}
}
}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": {
"mcp-software-consultant-delorenj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-software-consultant-delorenj"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-software-consultant-delorenj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-software-consultant-delorenj"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-software-consultant-delorenj": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-software-consultant-delorenj"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-software-consultant-delorenj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-software-consultant-delorenj"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-software-consultant-delorenj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-software-consultant-delorenj"
]
}
}
}FAQ
How do I install MCP Software Consultant?
You can install it by running `$ npm install -g mycli123` in your terminal.
What commands are available?
The CLI supports various commands such as `mycli123 hello PERSON`, `mycli123 help [COMMAND]`, among others.
Is it possible to add plugins to the CLI?
Yes! You can enhance the functionality by adding plugins using commands designed for plugin management.