AgentStack
MCP verified MIT Self-run

Funnel Mcp

mcp-nugrohosetiaji91-png-funnel-mcp · by nugrohosetiaji91-png

Expose a local MCP server to ChatGPT via Tailscale Funnel — public HTTPS, no open ports, secret-path auth. Single Python file.

No reviews yet
0 installs
2 views
0.0% view→install

Install

$ agentstack add mcp-nugrohosetiaji91-png-funnel-mcp

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Funnel Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

funnel-mcp

> Turn any Windows machine into an AI workstation. No cloud, no port forwarding, no public IP. > Just Tailscale Funnel + a single Python file.

The Problem

You want ChatGPT to control your PC — run commands, browse the web, manage files. But MCP servers need either local stdio (Claude Desktop only) or a public HTTPS endpoint (hard to set up, risky to expose).

The Solution

Tailscale Funnel gives you a free public HTTPS URL without opening ports. Secret-path auth means only someone with the token can reach your server. One Python file, zero config.

Architecture

Requirements

  • Windows 10/11 (tools use PowerShell; screenshot and browser are Windows-tested)
  • Python 3.11+
  • Tailscale with Funnel enabled

Quick Start

# 1. Install dependencies
pip install -r requirements.txt

# 2. Generate a secret token (server refuses to start without it)
python -c "import secrets; open('.funnel_token','w').write(secrets.token_hex(16))"

# 3. Start the server
python server.py

# 4. Expose it via Tailscale Funnel
tailscale up
tailscale funnel 8000

Connect GPT: https://YOUR-MACHINE.tailXXXXX.ts.net/YOUR-TOKEN/

Tools

| Tool | Description | |------|-------------| | run_command | PowerShell with timeout, cwd, taillines | | run_python | Python 3 execution with cwd | | file | Read, write, append, list, tree, search, grep, stat, move, strreplace | | web | Google/Bing/Wikipedia/DuckDuckGo search, fetch, Playwright browse, GitHub API | | git | Status, log, diff, branch, show, remote, blame | | system | Info, processes, ports, services, env, kill, screenshot (mss) | | memory | Persistent SQLite key-value — skill:*, insight:*, fact:* | | self | Review, backup, patch, heal, restart — the server can improve itself | | task | Multi-step autonomous runner with stop-on-error | | browser | Chrome CDP bridge — uses your logged-in sessions | | tailscale | Status, IP, ping |

Self-Improving

AI assistants can upgrade the server at runtime:

backup → file(str_replace) → heal → restart

No human needed. The self tool chain lets AI patch server.py, verify syntax, and restart — all from within a conversation.

Security

| Layer | Mechanism | |-------|-----------| | Transport | Tailscale WireGuard — end-to-end encrypted | | Access | Tailscale Funnel — no open ports, no NAT config | | Auth | Secret-path token in URL — 32-char random string | | Fail-safe | Server returns 503 if .funnel_token is missing | | Git-safe | .gitignore blocks the token file |

> ⚠️ The full URL (domain + token) is the only key. Share it carefully. > > Because the token lives in the URL path, it can end up in places URLs normally do: > browser history, access logs, and referrer headers. Treat the URL like a password — > don't paste it in public, and rotate it by regenerating .funnel_token and restarting.

License

MIT

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.