Skip to main content
Glama
midnight480

Backlog Remote MCP Server

by midnight480

Backlog Remote MCP Server

A remote MCP (Model Context Protocol) server for Backlog. Deployable to either Cloudflare Workers or AWS.

English | 日本語

Features

  • Multi-space — serve several Backlog spaces from one server

  • Read-only guard — mark a shared space readOnly to reject every write API call

  • OAuth 2.1 + PKCE — supports Dynamic Client Registration (DCR), so MCP clients connect directly

  • Email allowlist — restrict who can use the server

  • Two runtimes — the same business logic runs on Cloudflare or AWS

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

Durable Objects

Stateless

Stateless

Stateless

OAuth authorization server

@cloudflare/workers-oauth-provider

src/oauth

src/oauth

src/oauth

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

.dev.vars

infra/aws/params.yaml

infra/gcp/terraform.tfvars

infra/azure/params.json

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 (ap-northeast-1 / asia-northeast1 / japaneast)

Fixed costs (charged even when idle)

Cloudflare

AWS

Google Cloud

Azure

Runtime

$0 (Free plan works)

$0

$0 (min_instances = 0)

$0 (minReplicas = 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 image at 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

Durable Objects + 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 uses SQLite-backed Durable Objects, which are 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 install

Additional 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

  1. Backlog API keys and space configuration — shared by both platforms

  2. Pick an identity provider

  3. 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 two platforms. Each platform subgraph holds its own wiring — gateway, storage and upstream IdP — and both 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 &nbsp;&nbsp; src/platforms/cloudflare"]
        direction TB
        CFW["Workers &nbsp;&nbsp; <i>OAuthProvider</i>"]
        CFA["Cloudflare Access<br/><i>or Google / Entra ID</i>"]
        CFKV["KV &nbsp;&nbsp; <i>OAUTH_KV</i>"]
        CFDO["Durable Object<br/><i>BacklogMCP session</i>"]
        CFW -. "OIDC" .-> CFA
        CFW --- CFKV
        CFW --> CFDO
    end

    subgraph aws["AWS &nbsp;&nbsp; src/platforms/aws"]
        direction TB
        APIGW["API Gateway<br/><i>HTTP API + ACM + Route 53</i>"]
        LAMBDA["Lambda &nbsp;&nbsp; <i>nodejs22 / arm64</i>"]
        COG["Amazon Cognito<br/><i>+ Google IdP</i>"]
        DDB["DynamoDB &nbsp;&nbsp; <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 &nbsp;&nbsp; src/platforms/gcp"]
        direction TB
        RUN["Cloud Run &nbsp;&nbsp; <i>container</i>"]
        GID["Google account &nbsp;&nbsp; <i>OIDC</i>"]
        FS["Firestore &nbsp;&nbsp; <i>OAuth state</i>"]
        GSM["Secret Manager<br/><i>Backlog API keys</i>"]
        RUN -. "OIDC" .-> GID
        RUN --- FS
        RUN --- GSM
    end

    subgraph azure["Azure &nbsp;&nbsp; src/platforms/azure"]
        direction TB
        ACA["Container Apps &nbsp;&nbsp; <i>container</i>"]
        ENT["Entra ID &nbsp;&nbsp; <i>OIDC</i>"]
        COS["Cosmos DB &nbsp;&nbsp; <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 &nbsp;&nbsp; shared by Node runtimes"]
        OP["provider.ts &nbsp;&nbsp; <i>OAuth authorization server</i>"]
        OS["store.ts &nbsp;&nbsp; <i>AuthStore interface</i>"]
        OP --- OS
    end

    subgraph shared["src/core &nbsp;&nbsp; every runtime"]
        direction TB
        CS["create-server.ts<br/><i>tool registration + email allowlist</i>"]
        TOOLS["tools/ &nbsp;&nbsp; <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 ==> BLC

Request 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 result

Authorization 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
  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 parameters

Three layers, by how widely each one can be reused:

  • src/core depends only on @modelcontextprotocol/sdk and zod and references no runtime-specific API. Every platform uses it as-is.

  • src/oauth is the OAuth authorization server. It is Express-based, so it needs Node, but it holds no cloud-specific code: persistence goes through the AuthStore interface 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

Claude Desktop / Kiro / Cursor (via mcp-remote proxy)

{
  "mcpServers": {
    "backlog": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://<MCP_HOSTNAME>/mcp"
      ]
    }
  }
}

On first connection, a browser window opens for authentication.

Claude 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 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:

  1. the --host argument

  2. the MCP_HOSTNAME environment variable (shared with the Cloudflare deploy)

  3. ApiDomainName in infra/aws/params.yaml (AWS deploy)

  4. MCP_HOSTNAME in .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@latest

Enter 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_EMAILS provides an application-level email allowlist. Leaving it empty disables the allowlist, so anyone who can sign in through the upstream IdP gets every tool

  • Double-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 approval

  • Write guard: Spaces marked readOnly: true reject every non-GET call. The check lives in the API-call layer of src/core/backlog-client.ts, so it does not depend on individual tool implementations

  • Configuration isolation: All environment-specific values live in .dev.vars (untracked). The repository contains placeholders only

  • Dependency cooldown: .npmrc sets min-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=3

npm 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 ci installs exactly what package-lock.json says. 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_EMAILS is the effective authorization boundary for this server. There is no zone-level Access application in front of the Worker

  • npm run cloudflare:deploy overwrites production secrets with the values in .dev.vars. If you need different values locally and in production, use cloudflare:deploy:no-secrets for routine deploys and push secrets explicitly with cloudflare:secrets:push

  • A 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/mcp

wrangler dev emulates KV and Durable Objects 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:local

It performs the following, opening a browser partway through so you can log in:

  1. Fetch the Authorization Server metadata

  2. Dynamic client registration

  3. Approve in the browser → IdP login

  4. Token exchange with PKCE

  5. initialize / tools/list

  6. Call get_space and 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-host

Running 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   # both tsconfig.cloudflare.json and tsconfig.aws.json
npm test             # runs all suites below

Command

Covers

npm run test:oauth

OAuth authorization server logic (DCR, PKCE, single-use tokens, scopes, revocation)

npm run test:oauth-consent

Consent screen (HTML escaping, signed cookies, CSRF, approval gate)

npm run test:aws-store

DynamoDB store client-registration TTL and renewal

None of them reach external services — DynamoDB and the upstream IdP are stubbed.

Configuration files

File

Purpose

Git

.dev.vars

Local development + Cloudflare deploy

ignored

.dev.vars.example

Template for the above

committed

infra/aws/params.yaml

AWS deploy

ignored

infra/aws/params.example.yaml

Template for the above

committed

See the deployment guides for how to fill them in.

License

MIT

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

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/midnight480/backlog-remote-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server