@portkey-ai/hoot 0.3.0 → 0.4.1
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 +11 -0
- package/dist/assets/index-1iyslVla.js +194 -0
- package/dist/assets/index-bgGzZ1Sm.css +1 -0
- package/dist/index.html +28 -12
- package/index.html +27 -11
- package/mcp-backend-server.js +298 -4
- package/package.json +7 -2
- package/dist/assets/index-B5fBcVNv.css +0 -1
- package/dist/assets/index-D-Gxc6zl.js +0 -179
package/README.md
CHANGED
|
@@ -5,6 +5,16 @@
|
|
|
5
5
|
|
|
6
6
|
testing tool for MCP servers. like postman but for MCP.
|
|
7
7
|
|
|
8
|
+
## 🔒 security
|
|
9
|
+
|
|
10
|
+
hoot includes built-in security features for safe local development:
|
|
11
|
+
- ✅ session-based authentication
|
|
12
|
+
- ✅ rate limiting
|
|
13
|
+
- ✅ audit logging
|
|
14
|
+
- ✅ localhost-only access
|
|
15
|
+
|
|
16
|
+
runs securely on your local machine. [read more](./SECURITY.md)
|
|
17
|
+
|
|
8
18
|
## why
|
|
9
19
|
|
|
10
20
|
needed a quick way to test MCP servers without spinning up a whole AI chat interface.
|
|
@@ -31,6 +41,7 @@ hoot
|
|
|
31
41
|
- view responses
|
|
32
42
|
- oauth 2.1 if your server needs it
|
|
33
43
|
- copy stuff to clipboard
|
|
44
|
+
- **🚀 "try in hoot" links** - share one-click server configs ([docs](./docs/TRY_IN_HOOT.md))
|
|
34
45
|
|
|
35
46
|
## how it works
|
|
36
47
|
|