Home Vinci Code Use Vinci to drive tools in your coding assistant

Use Vinci to drive tools in your coding assistant

Last updated on Aug 03, 2026

Use Vinci as the reasoning model inside a coding assistant that already connects to MCP servers. This recipe is for power users who want their current host and tools to stay in place while Vinci decides which tool to call and when.

Vinci works with any MCP host that accepts a configurable OpenAI-compatible model. The host remains responsible for connecting to servers and executing tools; Vinci does not run the servers or act as the host.

  1. Check your assistant’s provider settings. Continue only if it lets you set an OpenAI-compatible endpoint and model. A host locked to its own model cannot use Vinci for tool selection.
  2. In the Vinci Platform, issue a vinci_live_… API key and copy it when shown. Give it the scopes required by your host; inference covers chat-completion calls, while models covers model discovery.
  3. Set the base URL to https://vinci.getsimpledirect.com/api/v1.
  4. Paste the key into the host’s API-key field and set the model to a class id — mezzo, forte, or fortissimo. For code and file tasks, use forte; Mezzo is fast and light for everyday chat, while Fortissimo is the deepest class for the hardest work. Hosts that require the field to be set should use a class id rather than auto.
  5. Connect one or two focused MCP servers in the host. Their tool definitions are passed to Vinci as standard function schemas, so no Vinci-specific adapter is needed.
  6. Start with a narrowly scoped request that makes the expected tool obvious. Confirm that the host receives a tool call, executes it, and returns the result.
  7. Add more servers or multi-step tasks only after the focused workflow works reliably.

On tool-enabled requests, your MCP servers provide the grounding. Plain-chat features such as automatic web search, memory, and attachments do not apply on this path.