theia-ext-logo

ECLIPSE THEIA - AI MCP EXTENSION


## Description The AI MCP package provides an integration that allows users to start and use MCP servers to provide additional tool functions to LLMs, e.g. search or file access (outside of the workspace). ### Features - Offers the framework to add/remove and start/stop MCP servers - Use tool functions provided by MCP servers in prompt templates ### Commands - Include `@theia/ai-mcp-ui` to gain access to the start and stop MCP sever commands. ### Configuration To configure MCP servers, include `@theia/mcp-ui` or `bind` the included `mcp-preferences`. Afterwards, open the preferences and add entries to the `MCP Servers Configuration` section. Each server requires a unique identifier (e.g., `"brave-search"` or `"filesystem"`) and configuration details such as the command, arguments, optional environment variables, and autostart (true by default). `"autostart"` (true by default) will automatically start the respective MCP server whenever you restart your Theia application. In your current session, however, you'll still need to **manually start it** using the `"MCP: Start MCP Server"` command. Example Configuration: ```json { "ai-features.mcp.mcpServers": { "memory": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-memory" ], "autostart": false }, "brave-search": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-brave-search" ], "env": { "BRAVE_API_KEY": "YOUR_API_KEY" } }, "filesystem": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-filesystem", "ABSOLUTE_PATH_TO_ALLOWED_DIRECTORY", ] }, "git": { "command": "uv", "args": [ "--directory", "/path/to/repo", "run", "mcp-server-git" ] }, "git2": { "command": "uvx", "args": [ "mcp-server-git", "--repository", "/path/to/otherrepo" ] } } } ``` Example prompt (for search) ```md ~{mcp_brave-search_brave_web_search} ``` Example User query ```md Search the internet for XYZ ``` ### More Information [Theia AI MCP UI README](https://github.com/eclipse-theia/theia/tree/master/packages/ai-mcp-ui) [User documentation on MCP in the Theia IDE](https://theia-ide.org/docs/user_ai/#mcp-integration) [List of available MCP servers](https://github.com/modelcontextprotocol/servers) ## Additional Information - [API documentation for `@theia/mcp`](https://eclipse-theia.github.io/theia/docs/next/modules/_theia_ai-mcp.html) - [Theia - GitHub](https://github.com/eclipse-theia/theia) - [Theia - Website](https://theia-ide.org/) ## License - [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/) - [GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp) ## Trademark "Theia" is a trademark of the Eclipse Foundation