@enactprotocol/mcp-server 1.0.10
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 +34 -0
- package/dist/mcp-server.js +25410 -0
- package/dist/mcp-server.js.bak +25409 -0
- package/dist/web/static/app.js +591 -0
- package/dist/web/static/index.html +117 -0
- package/dist/web/static/style.css +287 -0
- package/package.json +54 -0
package/README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# @enactprotocol/mcp-server
|
|
2
|
+
|
|
3
|
+
MCP (Model Context Protocol) Server for the Enact Protocol - discover and execute AI tools.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @enactprotocol/mcp-server
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
enact-mcp
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Features
|
|
18
|
+
|
|
19
|
+
- Model Context Protocol (MCP) server implementation
|
|
20
|
+
- Tool discovery and execution through MCP
|
|
21
|
+
- Environment management for tools
|
|
22
|
+
- Secure tool verification and execution
|
|
23
|
+
|
|
24
|
+
## Configuration
|
|
25
|
+
|
|
26
|
+
The MCP server can be configured through environment variables or configuration files. See the [main repository documentation](https://github.com/EnactProtocol/enact-cli) for details.
|
|
27
|
+
|
|
28
|
+
## Documentation
|
|
29
|
+
|
|
30
|
+
For full documentation, visit the [main repository](https://github.com/EnactProtocol/enact-cli).
|
|
31
|
+
|
|
32
|
+
## License
|
|
33
|
+
|
|
34
|
+
MIT
|