Connect to docs MCP
You can connect your AI assistant to the Signicat documentation to get expert, context-aware answers directly in your integrated developer environment (IDE).
Our MCP server lets your favourite AI tools search the Signicat developer documentation while you work.
AI tool options
This page mainly documents Visual Studio Code usage paired with Gemini Code Assist or GitHub Copilot, but you are free to choose any other option available in the menu provided in the widget and follow the brief instructions in the Use another MCP client section.
Prerequisites
Before you start installing the Gemini Code Assist and GitHub Copilot extensions in Visual Studio Code, you need to ensure that you have the following:
- Visual Studio Code with AI/Chat support enabled
- Access to the Signicat documentation
- A Google or GitHub account for authentication
1. Install AI assistant in Visual Studio Code
Depending on your preferred tool, follow the instructions below to install and configure either Gemini Code Assist or GitHub Copilot in Visual Studio Code:
- Gemini Code Assist usage
- Github Copilot usage
Gemini Code Assist
- Install the Gemini Code Assist extension if it is not already installed.
If you experience connection issues on Windows with Gemini Code Assist, you may try version 2.82.0 instead.
-
Find the MCP configuration file
~/.gemini/settings.json. -
Copy and paste the following snippet into the
~/.gemini/settings.jsonfile:{"mcpServers": {"signicat-docs": {"command": "npx","args": ["mcp-remote","https://signicat-documentation.mcp.kapa.ai"]}}} -
Open the Gemini Code Assist chat in Visual Studio Code.
-
Select Agent mode.
Select Agent mode
-
Open the Command Palette and run Developer: Reload Window.
- macOS: Press
Shift+Cmd+P. - Windows/Linux: Press
Ctrl+Shift+P.
- macOS: Press
-
In the Gemini chat, run
/mcpto confirm thatsignicat-docsis connected. You should then seesignicat-docsin the MCP Servers list. -
Complete the Kapa authentication flow in your browser if prompted.
For more information, see Google's Gemini Code Assist agent mode documentation.
GitHub Copilot
- Install the GitHub Copilot extension if it is not already installed.
- Sign in to Visual Studio Code with the GitHub account that has access to Copilot.
- Open the Chat view by selecting the Chat icon in the Activity Bar.
Chat icon
- Select Agent from the chat mode or agent picker.
Chat window: Agent selection
On macOS, you can also open the Chat view with Control+Cmd+I. On Windows/Linux, use Ctrl+Alt+I.
If the Chat icon or Agent option is not visible, make sure that:
- GitHub Copilot is installed and enabled.
- You are signed in to GitHub in Visual Studio Code.
2. Install the MCP server
- Open the Signicat Developer Documentation.
- Select the Ask AI button (next to Search).
- Select the Use MCP option in the Ask AI header.
Ask AI widget options
- Choose Add to VS Code.
- Follow the prompts to open Visual Studio Code.
- In Visual Studio Code, review the server details and select Install.
- When prompted, select Allow to authenticate with Kapa.
The server URL is: https://signicat-documentation.mcp.kapa.ai
The server is called signicat-docs.
An MCP server is not a regular Visual Studio Code extension. It will not appear with normal code extensions.
Installation options
Visual Studio Code offers two installation scopes:
- Choose Install if the Signicat documentation server is for your personal use across different projects.
- Choose Install in Workspace if the whole project team should have the same MCP server configuration. The
.vscode/mcp.jsonfile can be committed to source control.
The workspace configuration shares the server URL, but authentication and trust decisions remain user-specific.
Find the installed server
-
After installation, open the Extensions view.
-
Expand MCP Servers - Installed
-
Select
signicat-docs.MCP installation
From there, you can start, stop, enable, disable, uninstall, or view the server output.
Closing the MCP server editor does not uninstall the server. It only closes the configuration page.
3. Use the server in the Chat view
- Open the Chat view in Visual Studio Code.
- Select Agent as the chat mode.
- Select Open Customizations.
Open customisations
- Enable the Signicat documentation tools.
Enable the MCP
- Ask a Signicat related question in the chat to check that the Signicat documentation tool is enabled.
You can also type # in the chat input to search for available MCP tools.
Available tools
The server provides the following tools:
The search and document tools are intended to provide answers grounded in Signicat’s documentation.
Tools suggestions
Use another MCP client
The Signicat documentation server is a remote MCP server, so you can also use it with MCP clients other than Visual Studio Code and GitHub Copilot. Use the server URL below when a client asks for a remote MCP or connector URL:
https://signicat-documentation.mcp.kapa.ai
- Claude
- Codex
- Cursor
- Windsurf
Claude
- Open Settings in Claude or Claude Desktop.
- Select Connectors.
- Select Add custom connector.
- Enter
Signicat documentationas the name and use the server URL above. - Select Add, then Connect, and complete the Kapa authentication flow.
- Enable the connector from the + menu in a conversation.
For Team and Enterprise plans, an organisation owner may need to add the custom connector before other members can connect to it. See Anthropic's guide to custom connectors using remote MCP.
Codex
Install the Codex IDE extension and
sign in with your ChatGPT account.
- Open the Codex panel in Visual Studio Code.
- Open the gear menu and select MCP servers.
- Select Add server.
- Choose Streamable HTTP and enter the following URL:
https://signicat-documentation.mcp.kapa.ai
- Enter
signicat-docsas the server name. - Save the server and select Restart extension.
- Select Authenticate when prompted and complete the Kapa authentication flow in your browser.
You can also configure the server in ~/.codex/config.toml:
[mcp_servers.signicat-docs]
url = "https://signicat-documentation.mcp.kapa.ai"
Then run the following command to authenticate:
codex mcp login signicat-docs
After authentication, enable the Signicat tools in the Codex chat. You can use /mcp in the Codex terminal interface to view the connected server and its tools.
See the official Codex MCP documentation for more information.
Cursor
Add the server to either the project-level .cursor/mcp.json file or the
global ~/.cursor/mcp.json file:
{
"mcpServers": {
"signicat-docs": {
"url": "https://signicat-documentation.mcp.kapa.ai"
}
}
}
Restart Cursor or reload the MCP configuration, then open an Agent chat and enable the signicat-docs tools. When prompted, complete authentication in your browser. See the Cursor MCP documentation.
Windsurf
Open Windsurf's MCP settings, or edit ~/.codeium/windsurf/mcp_config.json, and add:
{
"mcpServers": {
"signicat-docs": {
"serverUrl": "https://signicat-documentation.mcp.kapa.ai"
}
}
}
Open Cascade, enable the signicat-docs server and its tools, and complete the browser authentication flow if prompted. See the Windsurf MCP documentation for the current configuration options.
Remote MCP clients may connect to the server from their own cloud services. Only connect trusted clients, review the permissions requested during authentication, and enable only the tools you need.
More information
To learn more about using MCP servers with Visual Studio Code, see the MCP servers page in the Visual Studio code documentation.