A full featured MCP SDK for Gestell with multiple modalities.
Make sure to grab your API Key for Gestell here.
Add this in either:
- Project Specific: create
.windsurf/mcp.jsonin your repo and paste the snippet. - Global: Windsurf → Settings → Cascade → View Raw Config to edit the same JSON from the UI.
{
"mcpServers": {
"gestell": {
"command": "npx",
"args": ["-y", "@gestell/mcp@latest"],
"env": {
"GESTELL_API_KEY": "gestell-...-..."
}
}
}
}Add this in either:
- Project Specific: create
.cursor/mcp.jsonin your repo and paste the snippet. - Global: open Cursor → Settings → MCP → “Edit global mcp.json”; paste the snippet anywhere inside the top-level
mcpServersobject.
Then restart Cursor (or reload the window) so the agent can detect the new server.
{
"mcpServers": {
"gestell": {
"command": "npx",
"args": ["-y", "@gestell/mcp@latest"],
"env": {
"GESTELL_API_KEY": "gestell-...-..."
}
}
}
}Alternatively you can install it directly and run gestell-mcp:
npm install --global @gestell/mcp@latest
# Run the command directly
gestell-mcp- Review the CHANGELOG to keep up to date on all changes.