atlassian-marketplace-mcp
Integrates with Atlassian Marketplace vendor APIs to provide tools for managing apps, promotions, licenses, transactions, reviews, and reporting metrics for Marketplace vendors.
Click on "Install 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., "@atlassian-marketplace-mcpshow me my recent licenses"
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.
atlassian-marketplace-mcp
A Model Context Protocol server that exposes the Atlassian Marketplace vendor APIs (reporting + v1 promotions) as 95 tools, 3 resources, and 4 prompts. Lets an LLM look up licenses, query transactions, manage promotions, read reviews, pull churn/conversion/renewal metrics, inspect app listings, and more — without you writing curl one-liners. Every tool is annotated per the MCP 2024-11 spec (readOnlyHint / destructiveHint) so MCP-aware UIs can render safety warnings automatically.
Targets Marketplace vendors (people who sell apps on marketplace.atlassian.com). Not for end users of Marketplace apps.
What is MCP? Model Context Protocol is an open standard for connecting AI assistants (Claude, etc.) to external data sources and tools. This server runs as a child process of your MCP client (Claude Code, Claude Desktop, etc.) and speaks MCP over stdio.
What's covered
Area | Tools | What it's for |
Apps | 2 | Discover your apps & their UUIDs |
Promotions | 10 | Full CRUD on promos and single-use codes |
Licenses | 5 | List, search by SEN, CSV exports (sync + async) |
Transactions | 7 | Sales history, aggregates, exports |
Reporting metrics | 20 | Churn, conversion, renewal, evaluations, feedback, customer insights, benchmarks, marketing attribution |
Reviews | 4 | Read reviews, respond, delete responses |
Search keywords | 8 | What customers search for to find your apps |
App listing & versions | 13 | Listing metadata, version management, tokens |
Privacy, security, migrations | 7 | Compliance metadata + DC→Cloud migration info |
Admin (developer space) | 9 | Team members, catalog account |
Misc | 10 | Parent software, partner metrics, product catalog, artifacts, free-starter tier |
Full per-tool catalog: docs/TOOLS.md. Design notes: docs/ARCHITECTURE.md.
Related MCP server: Atlassian MCP Server
Prerequisites
Node.js ≥ 20 (uses native
fetchand ES modules)An Atlassian account with vendor access to your developer space
An Atlassian API token — create one at
id.atlassian.com→ Security → API tokens
Install
git clone <this repo>
cd Atlassian_mcp
npm install
npm run buildConfigure
Copy the example env file and fill it in:
cp .env.example .env # macOS / Linux / PowerShell
# Windows cmd.exe: copy .env.example .envThe four required variables:
Var | Where to get it |
| Your Atlassian login email |
| Created at |
| UUID of your developer space — see below |
| Numeric partner ID for the v1 promotions API |
Finding your developerId and partnerId
Both are visible in the Atlassian Marketplace partner console URL when you're logged in, or you can resolve developerId from vendorId via the API:
# Replace EMAIL, TOKEN, VENDOR_ID with yours
curl -u "EMAIL:TOKEN" \
"https://api.atlassian.com/marketplace/rest/3/developer-space/vendor/VENDOR_ID"The numeric partnerId shows up in the Marketplace partner console URL (e.g. marketplace.atlassian.com/manage/vendors/<partnerId>). Often it's the same number as your vendorId, but not always — verify.
Optional: known product IDs
Add PRODUCT_ID_<UPPER_SNAKE>=<uuid> lines to .env for each of your apps. They're then accessible via the apps_known tool as a friendly-name → UUID map, so the LLM can say "My App Name" without having to call apps_list every time.
Discover the right UUIDs first via:
node dist/server.js # in another shell, send tools/call apps_list
# Or use the apps_list MCP tool from a connected client.npm scripts
Script | What it does |
| Compile TypeScript → |
|
|
| Strict typecheck without emitting output |
| Run the compiled server ( |
Run
npm start
# or directly:
node dist/server.jsThe server speaks MCP over stdio. It will wait for an MCP client to connect. To smoke-test by hand:
# Send a tools/list request via stdin to see all 95 tools (macOS / Linux)
printf '%s\n' \
'{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"sh","version":"0"}}}' \
'{"jsonrpc":"2.0","method":"notifications/initialized"}' \
'{"jsonrpc":"2.0","id":2,"method":"tools/list"}' | node dist/server.jsOn Windows (PowerShell) the same smoke test is:
@'
{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"ps","version":"0"}}}
{"jsonrpc":"2.0","method":"notifications/initialized"}
{"jsonrpc":"2.0","id":2,"method":"tools/list"}
'@ | node dist/server.jsWire into Claude Code
Add this to your ~/.claude.json under mcpServers (or a project-local .mcp.json). On Windows the file lives at %USERPROFILE%\.claude.json; use a Windows-style absolute path in args (forward slashes are fine in JSON):
{
"mcpServers": {
"atlassian-marketplace": {
"command": "node",
"args": ["/absolute/path/to/Atlassian_mcp/dist/server.js"]
}
}
}// Windows example args:
"args": ["C:/Users/you/Atlassian_mcp/dist/server.js"]The server finds its .env in the repo root even when the MCP client launches it from a different working directory, so no env block is needed in the client config (though you can use one to override).
Restart Claude Code. The 95 tools are then available as mcp__atlassian-marketplace__* in your next session.
Example prompts
Once wired in, try:
"Show me the last 10 transactions in Q1 2026 for <my app>."
"What's our cloud churn rate this month?"
"List all active promotions expiring this quarter."
"Look up license SEN-LXXXXXXXX and tell me when it expires."
"Pull customer insights by region for <my app>."
"Create a 25% promo code for <my app>, valid until 2026-12-31, single-use, Cloud annual."
Troubleshooting
Symptom | Likely cause | Fix |
| Bad email or API token | Re-issue token at |
| Wrong | Resolve via |
| Wrong | Check the URL in the Marketplace partner console |
| Atlassian-side: the deprecated non-paged variant is unresponsive | Use |
Empty result when filtering by | You passed the appKey instead of the UUID | Get the UUID via |
An expected app is missing from | The app may live under a different developer-space | One MCP instance per developer-space; run a second instance with different env if needed |
Multipart upload (artifact / image) | Not supported | Use Marketplace Partner UI for these uploads |
Project structure
src/
├─ server.ts # MCP stdio entrypoint, registers all 25 tool modules
├─ config.ts # env loader, single API base, PRODUCT_ID_* map
├─ http-client.ts # Basic-auth fetch wrapper, 429 retry
└─ tools/
├─ _shared.ts # jsonResult, asQuery, REPORTING_BASE/PROMO_BASE, filter schemas
├─ apps.ts # apps_list, apps_known
├─ promotions.ts # 10 promo tools (v1)
├─ licenses.ts # 5 license tools (reporting)
├─ transactions.ts # 7 transaction tools (reporting)
├─ reporting-meta.ts # reporting_links
├─ evaluations.ts # evaluations_by_metric
├─ feedback.ts # 2 feedback tools
├─ customer-insights.ts # 4 customer insights tools
├─ sales-metrics.ts # 6 sales-metric tools
├─ benchmarks.ts # 2 benchmark tools
├─ marketing-attribution.ts # 3 async-export tools
├─ app-requests.ts # app_requests_and_approvals
├─ reviews.ts # 4 review tools
├─ search-keywords.ts # 8 keyword tools
├─ free-starter.ts # free_starter_tier_export
├─ app-listing.ts # 2 product listing tools
├─ app-software.ts # 7 app-software tools
├─ app-version-listing.ts# 4 version-listing tools
├─ privacy-security.ts # 4 privacy/security tools
├─ migrations.ts # 3 cloud-migration compat tools
├─ parent-software.ts # 5 parent-software tools
├─ developer-space.ts # 9 dev-space admin tools
├─ partner-metrics.ts # partner_metrics_fetch
├─ product-catalog.ts # product_catalog_latest
└─ artifacts.ts # artifact_fetch_from_url, artifact_getFurther reading
docs/TOOLS.md— every tool with its argsdocs/ARCHITECTURE.md— design decisions and gotchasdocs/CHANGELOG.md— version historyAtlassian Marketplace API reference: https://developer.atlassian.com/platform/marketplace/rest/v4/ (Atlassian's docs site versions the content as
/v4/. The URL paths we actually hit are still/rest/3/...— that's the wire format. The older/v3/docs path on the developer site corresponds to the deprecated v2 wire format and is NOT what this MCP targets.)Model Context Protocol spec: https://modelcontextprotocol.io/
License
MIT © 2026 Rustem Shiriiazdanov. Use it, fork it, ship it.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/rustem-shiriiazdanov/atlassian-marketplace-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server