Backlog Remote MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Backlog Remote MCP Servershow issues assigned to me in the dev project"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Backlog Remote MCP Server
A remote MCP (Model Context Protocol) server for Backlog. Deployable to Cloudflare Workers, AWS, Google Cloud, or Azure.
English | 日本語
Features
Multi-space — serve several Backlog spaces from one server
Read-only guard — mark a shared space
readOnlyto reject every write API callPer-user Backlog keys — each caller acts as themselves in Backlog instead of one shared system user. Clients can also bring their own space, behind a domain allowlist. Clients that can set headers send the key per request; the rest enter it once on the consent screen. The server stores no Backlog credentials either way (details)
OAuth 2.1 + PKCE — supports Dynamic Client Registration (DCR), so MCP clients connect directly
Email allowlist — restrict who can use the server
Four deployment targets — the same business logic runs on Cloudflare, AWS, Google Cloud, or Azure
Related MCP server: backlog-mcp-server
Choosing a deployment
Cloudflare | AWS | Google Cloud | Azure | |
Runtime | Workers (edge) | Lambda + API Gateway | Cloud Run | Container Apps |
MCP session | Stateless | Stateless | Stateless | Stateless |
OAuth authorization server |
|
|
|
|
Upstream IdP | Cloudflare Access | Amazon Cognito | Google account | Microsoft Entra ID |
State storage | Workers KV | DynamoDB (TTL) | Firestore (TTL) | Cosmos DB (TTL) |
Secrets | Workers Secrets | Secrets Manager | Secret Manager | Key Vault |
IaC | wrangler | AWS SAM | Terraform | Bicep |
Config file |
|
|
|
|
The tools and their behavior are identical on all of them. Every platform can use either Google or Microsoft Entra ID as its upstream IdP; the table shows the default.
Estimated Cost
Note These are reference figures only. Actual charges vary by region, usage, and pricing changes. Use the official calculators for real estimates.
Assumptions
Personal use or a small team.
Item | Assumption |
Users | 1–5 |
MCP requests | ~3,000 / month |
Backlog spaces | 3 |
Log retention | 30 days |
Region | Tokyo ( |
Fixed costs (charged even when idle)
Cloudflare | AWS | Google Cloud | Azure | |
Runtime | $0 (Free plan works) | $0 | $0 ( | $0 ( |
Auth platform | $0 (Zero Trust free up to 50 users) | $0 (within Cognito free tier) | $0 (Google sign-in) | $0 (Entra ID free tier) |
Secrets | $0 (Workers Secrets are free) | ~$0.80 (2 Secrets Manager secrets) | $0 (3 versions, within free tier) | $0 (Key Vault bills operations, not secrets) |
Container registry | n/a | n/a | $0 (Artifact Registry, 0.5 GB free) | ~$5 (ACR Basic, $0.1666/day) |
Certificates | $0 | $0 (public ACM certificates are free) | $0 (managed by Cloud Run) | $0 (managed by Container Apps) |
Total | $0 | ~$1/month | ~$0 | ~$5/month |
Each platform's fixed cost comes from exactly one place:
AWS — Secrets Manager bills per secret per month whether or not it is used.
Azure — the container registry. ACR has no free tier, and Basic is billed per day even for a single image. Pointing
imageat a free registry such as GHCR removes this, at the cost of managing registry credentials yourself.Cloudflare / Google Cloud — nothing. Workers Secrets are free, and Google's Secret Manager free tier covers the three versions this project stores.
Note that Key Vault does not charge per secret, unlike AWS Secrets Manager. It bills per 10,000 operations, and this server caches secrets after the first read.
What is metered
Cloudflare | AWS | Google Cloud | Azure | |
Requests | Workers | Lambda + API Gateway | Cloud Run | Container Apps |
State storage | Workers KV | DynamoDB | Firestore | Cosmos DB (serverless) |
Logs | Workers Logs | CloudWatch Logs | Cloud Logging | Log Analytics |
At the assumed volume (~3,000 requests/month) all four stay within their free allowances. The exception is API Gateway HTTP API, which has no perpetual free tier, so AWS accrues a small charge proportional to request count (roughly $1 per million requests).
Thresholds worth knowing
Cloudflare — the 50-user line for Zero Trust
Zero Trust (Access) is free for up to 50 users. Beyond that you move to a paid plan billed per user per month. This is the cost that scales with headcount.
Cloudflare — Workers Free plan limits
This project runs MCP statelessly, so it needs only Workers and KV — both available on the Workers Free plan. The Free plan does cap daily requests and other usage, and exceeding a cap returns errors. For sustained use consider Workers Paid (from $5/month).
AWS — the Lambda free tier is perpetual
Lambda includes a perpetual free tier of 1M requests and 400,000 GB-seconds per month. API Gateway and Secrets Manager have no perpetual free tier.
AWS — CloudWatch Logs
Logs are billed on ingestion volume. This template manages retention explicitly via
LogRetentionDays (default 30), so logs do not accumulate indefinitely.
Google Cloud / Azure — cold starts are the price of $0 idle
Both default to scaling to zero, so an idle deployment costs nothing but the first
request after a quiet period pays container startup. Raising min_instances /
minReplicas to 1 removes that, and is the single change most likely to turn a
near-zero bill into a real one — keeping one small always-on instance costs roughly
$10–20/month on either platform.
Google Cloud / Azure — no per-user authentication cost
Signing in with a Google account or with Entra ID does not bill per user for this use. Unlike Cloudflare's 50-user Zero Trust line, headcount is not the variable that changes the bill.
Summary
Scale | Cloudflare | AWS | Google Cloud | Azure |
Personal | roughly $0 | ~$1/month | roughly $0 | ~$5/month |
Tens of users (≤50) | roughly $0–$5 | $1 to a few dollars/month | roughly $0–$2 | ~$5–7/month |
51+ users | Zero Trust switches to per-user billing | depends on the Cognito MAU free tier | no per-user cost | no per-user cost |
For small teams Cloudflare and Google Cloud are the cheapest, with no fixed cost. AWS carries the Secrets Manager fixed cost and Azure the registry fixed cost; both are worth it if you want to consolidate into an existing footprint or govern access through that cloud's IAM. Above 50 users, Cloudflare is the only one where the bill grows with headcount.
Setup
0. Prerequisites
Node.js 20 or later.
git clone <this-repo>
cd backlog-remote-mcp-server
npm installAdditional tools depend on the deployment target:
Target | Requirements |
Cloudflare Workers | Cloudflare account with Workers enabled, custom domain (optional) |
AWS | AWS account, AWS CLI v2, AWS SAM CLI |
Order to follow
Backlog API keys and space configuration — shared by every platform
Pick an identity provider
Pick a deployment target
If something goes wrong
Troubleshooting sections live at the end of each deployment guide.
Architecture
The same MCP server runs on four platforms. Each platform subgraph holds its own
wiring — gateway, storage and upstream IdP — and they all funnel into the shared
src/core, which is where the tools and the Backlog client live.
flowchart TB
subgraph clients["MCP clients"]
direction LR
CC["Claude Code<br/><i>native HTTP transport</i>"]
CD["Claude Desktop / Kiro / Cursor<br/><i>mcp-remote proxy or .mcpb</i>"]
end
subgraph cf["Cloudflare src/platforms/cloudflare"]
direction TB
CFW["Workers <i>OAuthProvider</i>"]
CFA["Cloudflare Access<br/><i>or Google / Entra ID</i>"]
CFKV["KV <i>OAUTH_KV</i>"]
CFW -. "OIDC" .-> CFA
CFW --- CFKV
end
subgraph aws["AWS src/platforms/aws"]
direction TB
APIGW["API Gateway<br/><i>HTTP API + ACM + Route 53</i>"]
LAMBDA["Lambda <i>nodejs22 / arm64</i>"]
COG["Amazon Cognito<br/><i>+ Google IdP</i>"]
DDB["DynamoDB <i>OAuth state</i>"]
SM["Secrets Manager<br/><i>Backlog API keys</i>"]
APIGW --> LAMBDA
LAMBDA -. "OIDC" .-> COG
LAMBDA --- DDB
LAMBDA --- SM
end
subgraph gcp["Google Cloud src/platforms/gcp"]
direction TB
RUN["Cloud Run <i>container</i>"]
GID["Google account <i>OIDC</i>"]
FS["Firestore <i>OAuth state</i>"]
GSM["Secret Manager<br/><i>Backlog API keys</i>"]
RUN -. "OIDC" .-> GID
RUN --- FS
RUN --- GSM
end
subgraph azure["Azure src/platforms/azure"]
direction TB
ACA["Container Apps <i>container</i>"]
ENT["Entra ID <i>OIDC</i>"]
COS["Cosmos DB <i>OAuth state</i>"]
AKV["Key Vault<br/><i>Backlog API keys</i>"]
ACA -. "OIDC" .-> ENT
ACA --- COS
ACA --- AKV
end
subgraph oauth["src/oauth shared by Node runtimes"]
OP["provider.ts <i>OAuth authorization server</i>"]
OS["store.ts <i>AuthStore interface</i>"]
OP --- OS
end
subgraph shared["src/core every runtime"]
direction TB
CS["create-server.ts<br/><i>tool registration + email allowlist</i>"]
TOOLS["tools/ <i>158 MCP tools</i>"]
BC["backlog-client.ts<br/><i>space routing + readOnly guard</i>"]
CS --> TOOLS --> BC
end
subgraph backlog["Backlog"]
direction LR
BLA["Space A"]
BLB["Space B"]
BLC["Space C ..."]
end
clients == "Streamable HTTP + OAuth" ==> CFW
clients == "Streamable HTTP + OAuth" ==> APIGW
clients == "Streamable HTTP + OAuth" ==> RUN
clients == "Streamable HTTP + OAuth" ==> ACA
CFDO --> CS
LAMBDA --> OP
RUN --> OP
ACA --> OP
OP --> CS
DDB -. "implements AuthStore" .-> OS
FS -. "implements AuthStore" .-> OS
COS -. "implements AuthStore" .-> OS
BC == "per-space API key" ==> BLA
BC ==> BLB
BC ==> BLCRequest flow
sequenceDiagram
autonumber
participant C as MCP client
participant S as Worker / Lambda
participant I as Upstream IdP
participant B as Backlog
C->>S: POST /mcp
S-->>C: 401 + OAuth metadata
C->>S: authorize
S->>I: redirect to upstream OIDC
I-->>S: callback with identity
Note over S: email allowlist check<br/>reject -> access_denied tool only
S-->>C: access token
C->>S: tools/list, tools/call
Note over S: resolve space -> pick API key<br/>readOnly guard blocks writes
S->>B: Backlog REST API v2
B-->>S: JSON
S-->>C: MCP resultAuthorization happens in two layers. The upstream IdP decides who may sign in,
and the email allowlist decides who gets tools: a user outside the allowlist
receives a server exposing only access_denied. The readOnly flag on a space
rejects every non-GET request in the API client layer, so it cannot be bypassed by
an individual tool.
Directory layout
Business logic is separated from runtime wiring.
src/
core/ Every runtime. Depends only on the MCP SDK and zod
backlog-client.ts Backlog API client (including the readOnly guard)
tools/ 158 MCP tools (full public API coverage)
create-server.ts MCP server assembly and authorization
credentials.ts Per-user Backlog keys: parsing and overlay
credential-envelope.ts Sealing those keys into tokens, so none are stored
oauth/ Node runtimes. OAuth authorization server (Express)
provider.ts OAuthServerProvider implementation
store.ts AuthStore interface — the persistence port
upstream.ts Upstream OIDC client
consent.ts Consent screen
app.ts Express app exposing /authorize, /token, /mcp, ...
platforms/
cloudflare/ Workers wiring (uses its own Workers OAuth provider)
aws/ Lambda wiring + DynamoDB / Secrets Manager adapters
gcp/ Cloud Run wiring + Firestore / Secret Manager adapters
azure/ Container Apps wiring + Cosmos DB / Key Vault adapters
infra/
aws/ SAM template and parameters
gcp/ Terraform configuration
azure/ Bicep template and parametersThree layers, by how widely each one can be reused:
src/coredepends only on@modelcontextprotocol/sdkandzodand references no runtime-specific API. Every platform uses it as-is.src/oauthis the OAuth authorization server. It is Express-based, so it needs Node, but it holds no cloud-specific code: persistence goes through theAuthStoreinterface and the upstream IdP through a generic OIDC client. Cloudflare does not use it — Workers has its own OAuth provider.src/platforms/<name>is the only place a cloud SDK appears.
Adding another Node-hosted platform (Cloud Run, Container Apps, ...) therefore means
implementing AuthStore for that platform's database, a secret lookup, and an entry
point that hands the Express app to the runtime. The authorization server, the tools
and the Backlog client are all reused unchanged.
Connecting from MCP Clients
Connecting authenticates you to this server. Acting on Backlog as yourself needs your own Backlog API key as well, and how you supply it depends on the client: those that can set HTTP headers send it per request, the rest type it once into the consent screen. Either way the server keeps no copy. See Per-user API keys for the header names and per-client configuration.
Claude Desktop / Kiro / Cursor (via mcp-remote proxy)
{
"mcpServers": {
"backlog": {
"command": "npx",
"args": [
"mcp-remote",
"https://<MCP_HOSTNAME>/mcp",
"--header",
"X-Backlog-Api-Key:${BACKLOG_API_KEY}"
],
"env": {
"BACKLOG_API_KEY": "your-own-backlog-api-key"
}
}
}
}On first connection, a browser window opens for authentication.
--header is what makes Backlog record the work as you rather than as a shared
system user. Write it with no space around the : and put the value in env
— some clients mishandle spaces inside an argument. Drop the header and the env
block if the space you are using has a shared apiKey configured on the server.
Serving several Backlog spaces? Swap in the plural header and list one SPACE=key
pair per space, separated by commas:
{
"mcpServers": {
"backlog": {
"command": "npx",
"args": [
"mcp-remote",
"https://<MCP_HOSTNAME>/mcp",
"--header",
"X-Backlog-Api-Keys:${BACKLOG_API_KEYS}"
],
"env": {
"BACKLOG_API_KEYS": "WORK=key-for-work,SHARED=key-for-shared"
}
}
}
}The space names are the name values from BACKLOG_SPACES_CONFIG, matched
case-insensitively. Name a space that is not configured and the request is rejected
rather than quietly falling back to a shared key. List only the spaces you have a key
for; the rest keep whatever the server is configured with. list_spaces shows which
spaces ended up with a usable key. See
Per-user API keys for both header formats.
Writing the key literally into args would leave it in the process list, readable
by anyone else on the machine. The env form above avoids that — mcp-remote does
the ${BACKLOG_API_KEY} substitution itself, so only the placeholder ever appears
in the arguments. A header file works too, and keeps the key out of the
environment as well:
"args": [
"mcp-remote",
"https://<MCP_HOSTNAME>/mcp",
"--header-file",
"/path/to/headers.txt"
]X-Backlog-Api-Key: your-own-backlog-api-keyClaude Desktop (.mcpb bundle)
Instead of hand-editing the JSON above, you can double-click a .mcpb
(MCP Bundle) to install it. It is generated during deploy and written to dist/.
npm run mcpb:pack # generate on its own
npm run aws:deploy # generated as part of the deploy (Cloudflare: npm run cloudflare:deploy)The bundle takes no API key: its arguments are fixed, so there is nowhere to put a header. Bundle users supply their key on the consent screen that appears during authorization instead — see Per-user API keys.
The endpoint URL is a user_config field, and the domain you deployed to is
baked in as its default. If you fork this and deploy to your own environment,
your deployment becomes the default. It can still be changed at install time.
Host name resolution order:
the
--hostargumentthe
MCP_HOSTNAMEenvironment variable (shared with the Cloudflare deploy)ApiDomainNameininfra/aws/params.yaml(AWS deploy)MCP_HOSTNAMEin.dev.vars
The bundle does not contain the server itself. MCPB is a local-execution
format: a manifest's server.type can only be node, python, binary or
uv, and there is no type that points at a remote MCP server. The bundle ships
mcp-remote as a local stdio proxy that connects to your deployed server.
mcp-remote is vendored into the bundle so nothing is fetched over the network
at runtime.
Claude Code does not use this bundle — it stays on claude mcp add --transport http.
MCP Inspector (for testing)
npx @modelcontextprotocol/inspector@latestEnter https://<MCP_HOSTNAME>/mcp in the inspector and complete the OAuth flow via OAuth Settings.
Usage
Specifying a Space
All tools accept an optional space parameter:
# Use default space
"Show me the issues for PROJECT-KEY"
# Specify a particular space
"List projects in the PERSONAL space"
→ space: "PERSONAL"Examples
# List configured spaces
"What Backlog spaces are available?" → list_spaces
# List projects
"Show COMPANY_A projects" → get_project_list(space: "COMPANY_A")
# Create an issue
"Create a new bug issue in PROJECT-KEY" → add_issue(...)
# List pull requests
"Show open PRs in repo-name" → get_pull_requests(...)Available Tools
Category | Tools |
Space | list_spaces, get_space, get_users, get_myself |
Project | get_project_list, get_project, add_project, update_project, delete_project, get_project_users |
Issue | get_issue, get_issues, count_issues, add_issue, update_issue, delete_issue, get_issue_comments, add_issue_comment, get_priorities, get_issue_types, get_categories, get_version_milestones, add_version_milestone, get_resolutions |
Wiki | get_wiki_pages, get_wikis_count, get_wiki, add_wiki |
Git | get_git_repositories, get_git_repository, get_pull_requests, get_pull_request, add_pull_request, update_pull_request, get_pull_request_comments, add_pull_request_comment |
Notification | get_notifications, get_notifications_count, reset_unread_notification_count, mark_notification_as_read |
add_*, update_*, and delete_* are write operations. Calling them against a space configured with readOnly: true is rejected before any request reaches the Backlog API. Use list_spaces to see the readOnly status of each space.
Security
Authentication: Cloudflare Access → Google / Microsoft Entra ID. The entire OAuth flow is managed by Cloudflare
Authorization:
ALLOWED_EMAILSprovides an application-level email allowlist. Leaving it empty disables the allowlist, so anyone who can sign in through the upstream IdP gets every toolDouble-check: Access Policy (Cloudflare side) + in-app allowlist (Worker side)
API Key Protection: Backlog API keys are stored in Cloudflare Secrets and never exposed to clients
PKCE + CSRF: OAuth flow is protected with PKCE (S256) and CSRF tokens
Client consent: Dynamic Client Registration is open to anyone, so authorization is gated behind a consent screen that names the client and its redirect target and requires a CSRF-protected approval. Approvals are keyed on
client_id+redirect_uri, so re-registering with a different redirect target cannot inherit a prior approvalWrite guard: Spaces marked
readOnly: truereject every non-GET call. The check lives in the API-call layer ofsrc/core/backlog-client.ts, so it does not depend on individual tool implementationsConfiguration isolation: All environment-specific values live in
.dev.vars(untracked). The repository contains placeholders onlyDependency cooldown:
.npmrcsetsmin-release-age=3, so dependency resolution only considers package versions that have been public for at least three days. Malicious npm releases are typically published and taken down within a couple of days, and this avoids that window
Supply chain
.npmrc pins a cooldown on dependency resolution:
min-release-age=3npm will only pick versions that have been available for at least three days. The attack pattern this targets is a malicious version published (often over a weekend) and taken down a few days later — a cooldown means you never resolve to it.
Two limits are worth knowing:
It applies to resolution, not to
npm ci.npm ciinstalls exactly whatpackage-lock.jsonsays. The cooldown protects the moment a version enters the lockfile, which is where it matters; a compromised version already committed to the lockfile is not caught by this.Three days is a floor, not a guarantee. Campaigns that survive longer than the window still get through. Raise the number if you want more margin; the cost is lagging behind upstream fixes by that many days.
Install scripts are the usual execution vector for these packages. npm 11 blocks them
by default and lists what it skipped, so review that output rather than reflexively
running npm approve-scripts --all.
Operational notes
ALLOWED_EMAILSis the effective authorization boundary for this server. There is no zone-level Access application in front of the Workernpm run cloudflare:deployoverwrites production secrets with the values in.dev.vars. If you need different values locally and in production, usecloudflare:deploy:no-secretsfor routine deploys and push secrets explicitly withcloudflare:secrets:pushA Backlog API key carries the full permissions of its owner. For spaces that need no writes, issue a read-only key and set
readOnly: true
Local Development
Local runs use the Cloudflare Workers build (wrangler dev). Because the business logic
lives in src/core, whatever you verify here holds for the AWS deployment too.
cp .dev.vars.example .dev.vars # fill in your values
npm run dev
# Server starts at http://localhost:8788/mcpwrangler dev emulates KV locally, so it never touches real Cloudflare resources.
Verifying the setup
Run the full OAuth-to-tool-call check in one command:
npm run check:localIt performs the following, opening a browser partway through so you can log in:
Fetch the Authorization Server metadata
Dynamic client registration
Approve in the browser → IdP login
Token exchange with PKCE
initialize/tools/listCall
get_spaceand show the real response from Backlog
If tools/list returns only access_denied, the email you logged in with is not in the
allowlist.
It also works against a deployed endpoint:
npm run check:local -- --base https://your-deployed-hostRunning over HTTPS
Use this when the IdP will not accept an http:// redirect URL.
npm run dev:https
# Server starts at https://localhost:8788/mcp (self-signed certificate)Type checking and tests
Types are split per platform, so misusing a Workers global in AWS code (or vice versa) is a type error.
npm run type-check # one pass per platform tsconfig (cloudflare / aws / gcp / azure)
npm test # runs all suites belowCommand | Covers |
| OAuth authorization server logic (DCR, PKCE, single-use tokens, scopes, revocation) |
| Consent screen (HTML escaping, signed cookies, CSRF, approval gate) |
| Upstream OIDC client (PKCE pair, token exchange, ID token verification) |
| DynamoDB store client-registration TTL and renewal |
| Per-user key headers: parsing, overlay, and refusal to fall back on a typo |
| End to end: the caller's key reaching the outgoing Backlog request |
| The sealed envelope, and that no Backlog key is ever written to the store |
| Client-declared spaces, and that the domain allowlist stops SSRF attempts |
None of them reach external services — DynamoDB, Backlog and the upstream IdP are stubbed.
Configuration files
File | Purpose | Git |
| Local development + Cloudflare deploy | ignored |
| Template for the above | committed |
| AWS deploy | ignored |
| Template for the above | committed |
See the deployment guides for how to fill them in.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Task management for people and AI agents, with scoped OAuth access to issues, projects, and docs.
- mcpOAuthcom.vibgrate
Query your team's drift, vulnerability, and upgrade data from any AI assistant. OAuth 2.1, 51 tools.
Connect AI assistants to Stellary projects, boards, documents, and governed agent workflows.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceEnables AI assistants to interact with Bitbucket Cloud repositories, allowing users to manage pull requests, comments, tasks, and branches through natural language commands.3,208 npm1MIT
- AlicenseBqualityDmaintenanceEnables interaction with Backlog project management tools, allowing users to manage projects, issues, and wikis through natural language.127,061 npmMIT
- AlicenseBqualityAmaintenanceEnables AI assistants to interact with Atlassian Cloud APIs for Confluence and Jira, supporting document management, search, issue tracking, and sprint operations through natural language.402MIT
- AlicenseAqualityCmaintenanceEnables AI assistants to interact with Atlassian Cloud (Jira, Confluence, Bitbucket) through natural language, providing CRUD operations for issues, pages, pull requests, and more.8619 npmMIT