Workspace for the hosted Sanka MCP server and its TypeScript API client
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.
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 server publishes 7 tools. What each one is for:
fly.toml — production Fly app configurationfly.staging.toml — staging Fly app configurationapp.localhost — 8000 serves /oauth/authorize and /api/v1/oauth/tokenapi.localhost — 8000 serves /api/v2/public/*first-party — /manage/oauththird-party — /:wsid/developers/oauthdemo.hubspot.company_avatar — update HubSpot demo company avatars through the HubSpot UI when CRM APIs cannot set the visible avatarBecause 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.
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.
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.
| Tool | What it does |
|---|---|
| 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. |
{
"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.
| Variable | Description | Required |
|---|---|---|
| MCP_SERVER_AUTHORIZATION_SERVER_URL | Endpoint or connection string the server talks to. | Yes |
| MCP_SERVER_OAUTH_CLIENT_ID | Configuration value read at startup. | Optional |
| SANKA_BASE_URL | Endpoint or connection string the server talks to. | Yes |
| SANKA_BROWSER_USE_WORKER_TOKEN | Credential the server authenticates with. | Yes |
| SANKA_BROWSER_USE_PROFILE_ROOT | Configuration value read at startup. | Optional |
| SANKA_BROWSER_USE_ARTIFACT_DIR | Filesystem location the server is allowed to use. | Optional |
| SANKA_BROWSER_USE_WORKER_URL | Endpoint or connection string the server talks to. | Yes |
| SANKA_API_KEY | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.