In the previous article, we created a FavCRM workspace and received a fav_mcp_* API key. Now we can connect an agent. FavCRM exposes its backend through the Model Context Protocol at: https://api.favcrm.io/mcp Enter fullscreen mode Exit fullscreen mode Once authenticated, the client can discover 165 typed tools across CRM, bookings, loyalty, invoices, commerce, content, team onboarding, WhatsApp setup, and reporting. Add FavCRM to Cursor Create or update ~/.cursor/mcp.json . { "mcpServers" : { "favcrm" : { "url" : "https://api.favcrm.io/mcp" , "headers" : { "Authorization" : "Bearer ${env:FAVCRM_API_KEY}" } } } } Enter fullscreen mode Exit fullscreen mode Then set the environment variable somewhere Cursor can read it. export FAVCRM_API_KEY = fav_mcp_... Enter fullscreen mode Exit fullscreen mode Restart Cursor and check the MCP settings panel. The favcrm server should connect and expose the tool catalog. The important detail is that the key lives in an environment variable, not in a repo-tracked config file.…