Sanka MCP Server

Workspace for the hosted Sanka MCP server and its TypeScript API client

Remote serverstreamable-httpTypeScript

What is the Sanka MCP MCP server?

Workspace for the hosted Sanka MCP server and its TypeScript API client. That is what the sanka mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

This repository contains the hosted Sanka MCP service and the TypeScript client it uses to call Sanka's externally callable API surface. It is now maintained as a normal TypeScript workspace, not as a Stainless-managed repository.

The tools it exposes

The server publishes 7 tools. What each one is for:

  • fly.toml — production Fly app configuration
  • fly.staging.toml — staging Fly app configuration
  • app.localhost — 8000 serves /oauth/authorize and /api/v1/oauth/token
  • api.localhost — 8000 serves /api/v2/public/*
  • first-party — /manage/oauth
  • third-party — /:wsid/developers/oauth
  • demo.hubspot.company_avatar — update HubSpot demo company avatars through the HubSpot UI when CRM APIs cannot set the visible avatar

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

What it needs from you

Configuration is passed through the environment: MCP_SERVER_AUTHORIZATION_SERVER_URL, MCP_SERVER_OAUTH_CLIENT_ID, SANKA_BASE_URL, SANKA_BROWSER_USE_WORKER_TOKEN, SANKA_BROWSER_USE_PROFILE_ROOT, SANKA_BROWSER_USE_ARTIFACT_DIR, SANKA_BROWSER_USE_WORKER_URL, SANKA_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Sanka MCP's toolset — fly.toml, fly.staging.toml, app.localhost and 4 more — is a fair guide to whether it matches your workflow. It is maintained by sankahq; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
fly.tomlproduction Fly app configuration
fly.staging.tomlstaging Fly app configuration
app.localhost8000 serves /oauth/authorize and /api/v1/oauth/token
api.localhost8000 serves /api/v2/public/*
first-party/manage/oauth
third-party/:wsid/developers/oauth
demo.hubspot.company_avatarupdate HubSpot demo company avatars through the HubSpot UI when CRM APIs cannot set the visible avatar.

How to install the Sanka MCP MCP server

{
  "mcpServers": {
    "sanka": {
      "command": "npx",
      "args": ["-y", "pnpm"],
      "env": {
        "MCP_SERVER_AUTHORIZATION_SERVER_URL": "your-value",
        "MCP_SERVER_OAUTH_CLIENT_ID": "your-value",
        "SANKA_BASE_URL": "your-value",
        "SANKA_BROWSER_USE_WORKER_TOKEN": "your-value",
        "SANKA_BROWSER_USE_PROFILE_ROOT": "your-value",
        "SANKA_BROWSER_USE_ARTIFACT_DIR": "your-value",
        "SANKA_BROWSER_USE_WORKER_URL": "your-value",
        "SANKA_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
MCP_SERVER_AUTHORIZATION_SERVER_URLEndpoint or connection string the server talks to.Yes
MCP_SERVER_OAUTH_CLIENT_IDConfiguration value read at startup.Optional
SANKA_BASE_URLEndpoint or connection string the server talks to.Yes
SANKA_BROWSER_USE_WORKER_TOKENCredential the server authenticates with.Yes
SANKA_BROWSER_USE_PROFILE_ROOTConfiguration value read at startup.Optional
SANKA_BROWSER_USE_ARTIFACT_DIRFilesystem location the server is allowed to use.Optional
SANKA_BROWSER_USE_WORKER_URLEndpoint or connection string the server talks to.Yes
SANKA_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Sanka MCP to fly.toml.
  • Use Sanka MCP to fly.staging.toml.
  • Use Sanka MCP to app.localhost.

Frequently asked questions

It connects Sanka MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (fly.toml, fly.staging.toml, app.localhost, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Sanka MCP directly.