What is MCP?
Model Context Protocol (MCP) is an open standard that lets AI models use external tools and data sources. Each MCP server exposes tools the AI can call — read files, query databases, send messages, and more. EnConvo has built-in MCP support. Add an MCP server and the AI can use its tools automatically.Setting Up MCP Servers
From Settings UI
- Open Settings → MCP Servers
- Click Add Server
- Choose transport type (stdio or HTTP), fill in the configuration
- Toggle the switch to enable/disable
Via CLI
Import from Other Tools
If you have MCP configs from Claude Desktop, Cursor, or other tools:- In Settings → MCP Servers, click Import
- Paste your JSON configuration
- Click Import to add all servers
Install Links
MCP servers can be installed with EnConvo deeplinks. It uses the same format asmcp.json with a name and transport configuration.
Install links:
The web page auto-launches the
enconvo:// deeplink and shows the server configuration as fallback.
Generate install link
- Get name and JSON configuration of server
JSON.stringifythe configuration then base64 encode it- Replace
$NAMEand$BASE64_ENCODED_CONFIGwith the name and encoded config
Example
Try this JSON in the MCP install link generator:Single MCP server config
Badge code for your README:
Install server
- Click the link or paste into browser
- EnConvo opens the MCP Servers settings pane
- The server is added and starts connecting automatically
- Once connected, its tools are available to the AI
Troubleshooting
Server fails to start
Server fails to start
- Verify the command and arguments in your configuration
- For stdio servers, ensure the binary is installed and in your PATH
- For Node.js servers, ensure
npxornodeis available
Tools not appearing
Tools not appearing
- Confirm the server is in Connected status
- Some servers require API keys before exposing tools
- Try disconnecting and reconnecting the server
Authentication errors
Authentication errors
- Verify API keys are correct and not expired
- Check that required environment variables are set
For the full MCP specification, visit modelcontextprotocol.io.