What MCP Servers Do
When you connect an MCP server, its tools become available to the Workshop agent during conversations. For example:- A database MCP server lets the agent query your PostgreSQL or SQLite database directly
- A filesystem MCP server gives access to files outside the project directory
- A web search MCP server lets the agent search the internet during conversations
- A custom MCP server can expose any API or service you build
Adding MCP Servers
Workshop Desktop provides three ways to add MCP servers. Open Settings and navigate to the MCP Servers tab to get started.Server Directory
The Server Directory tab lists popular, pre-configured MCP servers that you can install with one click.Install a server
Find the server you want and click Install. Workshop handles downloading the package and configuring the connection.
Custom Server
The Add Custom Server tab lets you manually configure any MCP server by specifying its runtime command and arguments.Enter server details
Provide:
- Server name — A display name for the server
- Runtime — The command to run the server (e.g.,
npx,uvx,node,python) - Arguments — Command-line arguments for the server process
- Environment variables — Any environment variables the server needs (API keys, config values)
Deep Links
Third-party websites and documentation can provide deep links that automatically configure an MCP server in Workshop Desktop. When you click a deep link, Workshop opens with the server configuration pre-populated — you just confirm the installation. Deep links use the format:Deep links only work when Workshop Desktop is installed. They use the
memex:// protocol handler registered by the desktop app.Managing Configured Servers
The Configured Servers tab shows all MCP servers you’ve added.Enabling and Disabling Servers
Each server has an enable/disable toggle. Disabling a server stops its process and removes its tools from the agent’s available tools — but keeps the configuration saved so you can re-enable it later. When you enable a server, Workshop starts the server process and waits for initialization. The status indicator shows:| Status | Meaning |
|---|---|
| Pending | Server is starting up |
| Connected | Server is running and tools are available |
| Error | Server failed to start (expand for error details) |
Enabling and Disabling Individual Tools
Expand a server to see its available tools. Each tool has its own toggle — disable specific tools you don’t want the agent to use while keeping the server running. This is useful when a server exposes many tools but you only need a few, or when you want to prevent the agent from using a particular tool during a conversation.Connection Monitoring
Workshop Desktop polls MCP servers periodically to verify they’re still running and responsive. If a server becomes unresponsive, the status updates automatically. You can also manually refresh the status from the three-dots menu.Configuration Storage
MCP server configurations are stored in amcp.json file within your Workshop Desktop data directory. You can edit this file directly if you prefer, then use Reload Configuration in the settings to pick up changes.
Troubleshooting
Server shows 'Error' status
Server shows 'Error' status
Expand the server entry to see the error message. Common issues:
- Runtime not found — The command (e.g.,
npx,uvx) isn’t installed or not in your PATH. Install the required runtime and try again. - Connection refused — The server process started but crashed. Check the error message for details.
- Authentication failed — The server requires credentials. Update the environment variables in the server configuration.
Server tools not appearing in conversations
Server tools not appearing in conversations
Make sure the server is enabled (toggle is on) and the status shows Connected. If individual tools are disabled, they won’t appear even when the server is connected.
Deep link not opening Workshop
Deep link not opening Workshop
Deep links require Workshop Desktop to be installed and the
memex:// protocol handler to be registered. Try reinstalling Workshop Desktop if deep links aren’t being recognized by your OS.