mcpskill

MCP server is live

This endpoint serves a stateless Streamable HTTP MCP server. Browsers can open this page, but MCP clients must use POST requests against https://armbian.tailb0ade3.ts.net/mcpskill. Public and private traffic use static bearer keys, and anonymous access stays disabled unless explicitly enabled.

Endpoints

  • https://armbian.tailb0ade3.ts.net/mcpskill for MCP client traffic
  • https://armbian.tailb0ade3.ts.net/health for health checks

Security Mode

  • Public anonymous read-only: disabled
  • Public bearer access: enabled
  • Private bearer access: enabled

Ops Dashboard

Open https://armbian.tailb0ade3.ts.net/mcpskill/dashboard to watch recent MCP traffic, audit outcomes, and copy config blocks for common clients.

Static Keys

Issue or preload bearer keys in the token store, then send them as Authorization: Bearer <key>.

Use In VS Code

Open MCP: List Servers and start mcpskill.

Manual Test

Invoke-RestMethod -Method Post -Uri "https://armbian.tailb0ade3.ts.net/mcpskill" `
-Headers @{ Authorization = "Bearer REPLACE_WITH_STATIC_ACCESS_KEY"; Accept = "application/json, text/event-stream" } `
-ContentType "application/json" `
-Body '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"manual-test","version":"1.0.0"}}}'

Prefer short-lived static keys for external users and revoke them when access is no longer needed.