@theia/ai-mcp-ui 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 +37 -9
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,27 +1,39 @@
|
|
|
1
|
-
|
|
1
|
+
<div align='center'>
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<br />
|
|
4
4
|
|
|
5
|
-
|
|
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 UI EXTENSION</h2>
|
|
8
|
+
|
|
9
|
+
<hr />
|
|
10
|
+
|
|
11
|
+
</div>
|
|
12
|
+
|
|
13
|
+
## Description
|
|
14
|
+
|
|
15
|
+
The Model Context Server (MCP) UI Integration package provides the UI for users to start and use MCP servers
|
|
16
|
+
|
|
17
|
+
### Features
|
|
6
18
|
|
|
7
19
|
- Start and stop MCP servers.
|
|
8
20
|
- Provide preference schema for autocomplete etc. in preferences
|
|
9
21
|
|
|
10
|
-
|
|
22
|
+
### Commands
|
|
11
23
|
|
|
12
|
-
|
|
24
|
+
#### Start MCP Server
|
|
13
25
|
|
|
14
26
|
- **Command ID:** `mcp.startserver`
|
|
15
27
|
- **Label:** `MCP: Start MCP Server`
|
|
16
28
|
- **Functionality:** Allows you to start a MCP server by selecting from a list of configured servers.
|
|
17
29
|
|
|
18
|
-
|
|
30
|
+
#### Stop MCP Server
|
|
19
31
|
|
|
20
32
|
- **Command ID:** `mcp.stopserver`
|
|
21
33
|
- **Label:** `MCP: Stop MCP Server`
|
|
22
34
|
- **Functionality:** Allows you to stop a running MCP server by selecting from a list of currently running servers.
|
|
23
35
|
|
|
24
|
-
|
|
36
|
+
### Usage
|
|
25
37
|
|
|
26
38
|
1. **Starting a MCP Server:**
|
|
27
39
|
- Use the command palette to invoke `MCP: Start MCP Server`.
|
|
@@ -38,13 +50,29 @@ The AI MCP UI package provides the UI for users to start and use MCP servers
|
|
|
38
50
|
- Open a prompt template and add the added tool functions
|
|
39
51
|
- Type '~{' to open the auto completion
|
|
40
52
|
|
|
41
|
-
|
|
53
|
+
### Configuration
|
|
42
54
|
|
|
43
55
|
To configure MCP servers, open the preferences and add entries to the `MCP Servers Configuration` section.
|
|
44
56
|
See the Theia MCP package (`@theia/ai-mcp`) README for more information.
|
|
45
57
|
|
|
46
|
-
|
|
58
|
+
### More Information
|
|
47
59
|
|
|
48
60
|
[Theia AI MCP README](https://github.com/eclipse-theia/theia/tree/master/packages/ai-mcp)
|
|
49
61
|
[User documentation on MCP in the Theia IDE](https://theia-ide.org/docs/user_ai/#mcp-integration)
|
|
50
62
|
[List of available MCP servers](https://github.com/modelcontextprotocol/servers)
|
|
63
|
+
|
|
64
|
+
## Additional Information
|
|
65
|
+
|
|
66
|
+
- [API documentation for `@theia/mcp-ui`](https://eclipse-theia.github.io/theia/docs/next/modules/_theia_ai-mcp-ui.html)
|
|
67
|
+
- [Theia - GitHub](https://github.com/eclipse-theia/theia)
|
|
68
|
+
- [Theia - Website](https://theia-ide.org/)
|
|
69
|
+
|
|
70
|
+
## License
|
|
71
|
+
|
|
72
|
+
- [Eclipse Public License 2.0](http://www.eclipse.org/legal/epl-2.0/)
|
|
73
|
+
- [GNU General Public License, version 2 with the GNU Classpath Exception](https://projects.eclipse.org/license/secondary-gpl-2.0-cp)
|
|
74
|
+
|
|
75
|
+
## Trademark
|
|
76
|
+
|
|
77
|
+
"Theia" is a trademark of the Eclipse Foundation
|
|
78
|
+
<https://www.eclipse.org/theia>
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/ai-mcp-ui",
|
|
3
|
-
"version": "1.67.0-next.
|
|
3
|
+
"version": "1.67.0-next.59+3f14297ea",
|
|
4
4
|
"description": "Theia - MCP UI Integration",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/ai-core": "1.67.0-next.
|
|
7
|
-
"@theia/ai-mcp": "1.67.0-next.
|
|
8
|
-
"@theia/core": "1.67.0-next.
|
|
6
|
+
"@theia/ai-core": "1.67.0-next.59+3f14297ea",
|
|
7
|
+
"@theia/ai-mcp": "1.67.0-next.59+3f14297ea",
|
|
8
|
+
"@theia/core": "1.67.0-next.59+3f14297ea"
|
|
9
9
|
},
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public"
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"nyc": {
|
|
46
46
|
"extends": "../../configs/nyc.json"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "3f14297ea2edcdb1fffd74afee0613e70b43e125"
|
|
49
49
|
}
|