Devin/install-mcp
Install an MCP server
Opens Devin's MCP marketplace with a custom server config prefilled.
Format
https://app.devin.ai/settings/mcp-marketplace/setup/custom?config={config}Try it
https://app.devin.ai/settings/mcp-marketplace/setup/custom?config=%7B%22name%22%3A%22example%22%2C%22transport%22%3A%22HTTP%22%2C%22url%22%3A%22https%3A%2F%2Fexample.com%2Fmcp%22%7DOpenWhat you supply
{config}The server definition — JSON, stringified, then URL-encoded.
encodeURIComponent(JSON.stringify(config)). The object carriesname,transport(HTTP) andurl. Encode it, do not hand-write it — a raw{,"or&will not survive the trip.
Devin's answer to the same problem Cursor and VS Code solve with a scheme: a link that installs an MCP server so nobody has to paste JSON into a settings file. Devin does it over https, on the account rather than on the machine, which is the difference between an agent that runs in a datacentre and one that runs on your laptop.
The config is opaque and encoded, so the link tells its reader nothing about what it is about to install. Read it before you click it.