Skip to main content
Uses: MCP
Every MCP server you create in Engini has a server token. Your connection URL is:
The server exposes exactly the tools its toolset permits - so scope the toolset first if you want a narrow agent (see Scope an agent with a toolset). Authentication is standard OAuth 2.1: on first use the client discovers the authorization server, opens a browser for you to sign in and approve, and stores the token itself. You never paste an API key into an MCP client.

Claude Code

Then /mcp inside Claude Code to check the connection and complete sign-in if prompted.

Claude (web & desktop)

Settings → Connectors → Add custom connector, then paste the URL:

Cursor

Create .cursor/mcp.json in your project (or edit the global one via Settings → MCP):

VS Code

Add to .vscode/mcp.json:

Any other MCP client

Most clients accept the same shape:
If your client only supports stdio transport, bridge it with a generic remote-MCP proxy - Engini’s server is SSE over HTTPS.

Verifying it worked

Ask the client to list its tools. You should see the tools of your toolset, named by slug (monday_create_item, gmail_send_mail…). If you see none:

What the agent gets

  • tools/list - the toolset’s tools with their JSON Schemas
  • tools/call - execution through the toolset’s bound connections, with the same semantics as the REST endpoint, including the isSuccess contract

For the agent reading this