Skip to main content

Installing MCP Server

Witboost MCP Server is installed in the customer environment and interacts with Witboost and several components (database, embedders). Before going through the prerequisites, make sure to read the requirements.

In order to install the Witboost MCP server, you must to configure the embedder model. You can follow this guide.

Additionally, you need to enable and configure the Witboost MCP server in the Witboost configuration file (values.yaml).

...
witboost-mcp-server:
enabled: true

global:
ingress:
domain: *domain

logLevel: info
witboostUrl: *ui_url

ingress:
enabled: true
className: "nginx"
subdomain: witboost-mcp-server # The subdomain used in the Ingress host
path: /
pathType: ImplementationSpecific
tls:
enabled: true
annotations:
<< : *ingress_defaults
... # your ingress annotations
...

::: tip If your domain is foo.bar, then your Witboost MCP Server will be https://witboost-mcp-server.foo.bar/mcp. You can now follow the Getting Started. :::