@theia/ai-mcp 1.67.0-next.3 → 1.67.0-next.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +33 -5
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,17 +1,29 @@
|
|
|
1
|
-
|
|
1
|
+
<div align='center'>
|
|
2
|
+
|
|
3
|
+
<br />
|
|
4
|
+
|
|
5
|
+
<img src='https://raw.githubusercontent.com/eclipse-theia/theia/master/logo/theia.svg?sanitize=true' alt='theia-ext-logo' width='100px' />
|
|
6
|
+
|
|
7
|
+
<h2>ECLIPSE THEIA - AI MCP EXTENSION</h2>
|
|
8
|
+
|
|
9
|
+
<hr />
|
|
10
|
+
|
|
11
|
+
</div>
|
|
12
|
+
|
|
13
|
+
## Description
|
|
2
14
|
|
|
3
15
|
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).
|
|
4
16
|
|
|
5
|
-
|
|
17
|
+
### Features
|
|
6
18
|
|
|
7
19
|
- Offers the framework to add/remove and start/stop MCP servers
|
|
8
20
|
- Use tool functions provided by MCP servers in prompt templates
|
|
9
21
|
|
|
10
|
-
|
|
22
|
+
### Commands
|
|
11
23
|
|
|
12
24
|
- Include `@theia/ai-mcp-ui` to gain access to the start and stop MCP sever commands.
|
|
13
25
|
|
|
14
|
-
|
|
26
|
+
### Configuration
|
|
15
27
|
|
|
16
28
|
To configure MCP servers, include `@theia/mcp-ui` or `bind` the included `mcp-preferences`.
|
|
17
29
|
|
|
@@ -83,8 +95,24 @@ Example User query
|
|
|
83
95
|
Search the internet for XYZ
|
|
84
96
|
```
|
|
85
97
|
|
|
86
|
-
|
|
98
|
+
### More Information
|
|
87
99
|
|
|
88
100
|
[Theia AI MCP UI README](https://github.com/eclipse-theia/theia/tree/master/packages/ai-mcp-ui)
|
|
89
101
|
[User documentation on MCP in the Theia IDE](https://theia-ide.org/docs/user_ai/#mcp-integration)
|
|
90
102
|
[List of available MCP servers](https://github.com/modelcontextprotocol/servers)
|
|
103
|
+
|
|
104
|
+
## Additional Information
|
|
105
|
+
|
|
106
|
+
- [API documentation for `@theia/mcp`](https://eclipse-theia.github.io/theia/docs/next/modules/_theia_ai-mcp.html)
|
|
107
|
+
- [Theia - GitHub](https://github.com/eclipse-theia/theia)
|
|
108
|
+
- [Theia - Website](https://theia-ide.org/)
|
|
109
|
+
|
|
110
|
+
## License
|
|
111
|
+
|
|
112
|
+
- [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
|
|
113
|
+
- [GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
|
|
114
|
+
|
|
115
|
+
## Trademark
|
|
116
|
+
|
|
117
|
+
"Theia" is a trademark of the Eclipse Foundation
|
|
118
|
+
<https://www.eclipse.org/theia>
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/ai-mcp",
|
|
3
|
-
"version": "1.67.0-next.
|
|
3
|
+
"version": "1.67.0-next.59+3f14297ea",
|
|
4
4
|
"description": "Theia - MCP Integration",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@modelcontextprotocol/sdk": "^1.15.1",
|
|
7
|
-
"@theia/ai-core": "1.67.0-next.
|
|
8
|
-
"@theia/core": "1.67.0-next.
|
|
7
|
+
"@theia/ai-core": "1.67.0-next.59+3f14297ea",
|
|
8
|
+
"@theia/core": "1.67.0-next.59+3f14297ea"
|
|
9
9
|
},
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public"
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"nyc": {
|
|
48
48
|
"extends": "../../configs/nyc.json"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "3f14297ea2edcdb1fffd74afee0613e70b43e125"
|
|
51
51
|
}
|