Portal
Portal

Portal은 현재 작업 영역을 공개 MCP 엔드포인트로 노출하는 VS Code 확장 프로그램입니다. 의도적으로 아주 작게 유지됩니다: 명령 실행과 파일 전송만 제공합니다.
터널을 통해 어떤 MCP 클라이언트든(Claude, ChatGPT, Cursor, 커스텀 에이전트, curl) 여러분의 컴퓨터에 연결하세요. 에이전트는 셸을 실행하고 파일을 옮길 수 있습니다. MCP 도구를 통해 텍스트를 편집할 수는 없습니다 — 그런 도구는 없습니다.
제공 구성
구성 | 역할 |
MCP Streamable HTTP |
|
File HTTP API |
|
사이드바 + 설정 | Win10 스타일 플랫 패널: 시작/중지, URL 복사, 터널 상태 |
Portal Agent 터미널 |
|
Related MCP server: local-bridge
MCP 도구 (정확히 다섯 개)
도구 | 용도 |
| 포그라운드 명령. 기본 제한 시간 120초(최대 600초). |
| 오랫동안 실행되는 프로세스를 시작합니다. |
| 오프셋 단위로 stdout/stderr를 증분 읽기합니다. |
| 백그라운드 작업과 해당 프로세스 트리를 중지합니다( |
| 공개 파일 API 기본 URL, 크기 제한, curl 예시를 반환합니다. |
셸: powershell (Windows 기본), pwsh, cmd, bash / sh (Git Bash가 있으면 사용). UTF-8은 자동으로 설정됩니다.
세션: initialize에서 받은 Mcp-Session-Id를 재사용하세요. 유실되거나 거부되면 다시 initialize하세요 — 임의로 ID를 만들지 마세요.
read_file / write_file / edit_file / list_* / search_files 도구는 없습니다. 셸 또는 HTTP 파일 API로 읽고 쓰세요.
파일 전송 (양방향 HTTP)
MCP와 동일한 터널과 토큰을 사용합니다. 기본 최대 크기: 64 MiB (portal.maxTransferBytes). 업로드는 원자적으로 교체됩니다. 다운로드는 Range를 지원하고 SHA-256을 반환합니다.
GET {base}?op=info capability + workspace
GET {base}?glob=**/* list files
GET {base}/<relpath> download
HEAD {base}/<relpath> metadata
PUT {base}/<relpath> upload
DELETE {base}/<relpath> delete
POST {base}?op=pack zip JSON { "paths": ["src"] }
POST {base}?op=unpack&dest=. unzip (raw zip body)무료 ngrok 도메인에는 ngrok-skip-browser-warning: 1 헤더가 필요합니다.
# download
curl -fsSL -H "ngrok-skip-browser-warning: 1" \
"$BASE/README.md" -o README.md
# upload
curl -fsSL -H "ngrok-skip-browser-warning: 1" \
-T ./photo.png "$BASE/incoming/photo.png"
# pack a folder
curl -fsSL -H "ngrok-skip-browser-warning: 1" \
-H "Content-Type: application/json" \
-d '{"paths":["src"]}' "$BASE?op=pack" -o src.zip터널 제공자
제공자 | URL | 참고 |
| 시작할 때마다 새로운 임의의 | 빠르게 시험해볼 수 있으나 안정적이지 않음 |
| 고정 호스트명 | 저장된 Tunnel 토큰, 공개 호스트명, 고정 로컬 포트 필요 |
| 예약된 도메인 (예: | 지속되는 URL |
| 직접 지정한 명령 또는 기존 URL | 플레이스홀더: |
라우트 토큰은 비밀 경로 세그먼트입니다. MCP는 /mcp/<token> 경로에 있습니다. portal.routeToken을 비워 두면 시작 시 자동 생성됩니다.
명령 (팔레트)
Portal: Start / Stop
Portal: Copy URL
Portal: Check Tunnel
Portal: Settings
Portal: Install cloudflared / Install/Upgrade ngrok
Portal: Show Log / Show Agent Terminal
유용한 설정: portal.startOnActivation (기본 켜짐), portal.showCommandsInTerminal, portal.localPort (0 = 자동, 명명된 Cloudflare의 경우 제외).
빌드
Node 18+와 VS Code ^1.95.0이 필요합니다.
npm install
npm run build # esbuild → dist/extension.js
npm run typecheck
npm run package # .vsix (no bundled node_modules)패키징된 VSIX를 로드하거나 데스크톱 VS Code 호스트에서 확장 프로그램을 실행하세요 (extensionKind: ui + workspace).
라이선스
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceEnables cloud agents to securely operate local machine resources (files, commands, screenshots) via standard MCP protocol.MIT
- AlicenseNot gradedqualityAmaintenanceConnects local tools (browser, shell) to a remote MCP server via reverse-MCP, enabling the server agent to control your local browser and execute shell commands.237Apache 2.0
- AlicenseNot gradedqualityAmaintenanceExposes a local development project as a secure MCP server over a stable HTTPS URL via Cloudflare tunnel, with configurable access permissions and 33 development tools for file, command, Git, and process operations.MIT
- AlicenseNot gradedqualityCmaintenanceEnables remote MCP clients like ChatGPT to run shell commands and manage files on your local machine via a Cloudflare tunnel, exposing tools for file operations, search, and task management.MIT
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
MCP server for interacting with the Supabase platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/s3hq4y/portal'
If you have feedback or need assistance with the MCP directory API, please join our Discord server