Skip to main content

Install via NPM

The Deepcon MCP server is available as an npm package and can be installed globally:
npm install -g deepcon-mcp
Package Information

Prerequisites

Before installing, make sure you have:
Deepcon requires Node.js version 19 or higher to run properly.Check your Node.js version:
node --version
You’ll need an API key from the Deepcon dashboard.
  1. Sign up at deepcon.ai
  2. Navigate to your dashboard
  3. Copy your API key for configuration
Deepcon works with any IDE that supports the Model Context Protocol (MCP):
  • Claude Desktop
  • Claude Code
  • Cursor
  • Windsurf

Verify Installation

After installation, verify that the MCP server is available:
which deepcon-mcp
# Should output: /usr/local/bin/deepcon-mcp (or similar path)

Next Steps

Once installed, you need to configure your IDE to use the Deepcon MCP server:

Troubleshooting

If you get a “command not found” error after installation:
  1. Make sure npm global bin directory is in your PATH
  2. Run npm config get prefix to find the npm global directory
  3. Add {prefix}/bin to your PATH environment variable
If you encounter permission errors during installation:macOS/Linux:
sudo npm install -g deepcon-mcp
Or configure npm to use a different directory:
mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
# Add ~/.npm-global/bin to your PATH
To update to the latest version:
npm update -g deepcon-mcp