UNPKG
muppet-kit
Version:
latest (0.1.6)
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
A collection of tools for building MCP servers.
github.com/muppet-dev/kit
muppet-dev/kit
muppet-kit
/
dist
/
tunnel
/
index.d.ts
13 lines
(9 loc)
•
238 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import { TunnelHandler }
from
'@muppet-kit/shared'
;
declare
function
cloudflare
(
):
TunnelHandler
;
/** * Ngrok tunnel handler */
declare
function
ngrok
(
options?: { apiKey?:
string
; }
):
TunnelHandler
; export { cloudflare, ngrok };