This section describes a Forge preview feature. Preview features are deemed stable; however, they remain under active development and may be subject to shorter deprecation windows. Preview features are suitable for early adopters in production environments.
We release preview features so partners and developers can study, test, and integrate them prior to General Availability (GA). For more information, see Forge release phases: EAP, Preview, and GA.
The Forge MCP Server is a remote Model Context Protocol (MCP) server that exposes authoritative Forge and Atlassian Cloud knowledge to coding agents and AI-powered IDEs. It’s designed to help developers using tools like Cursor, VS Code, or Rovo Dev CLI get grounded, detailed, searchable context for their developer agents.
The Forge MCP Server provides Forge-specific knowledge and search as APIs, making it easy for AI coding agents to access:
Unlike general-purpose APIs, this server is aimed at developers working in AI-powered IDEs and code editors, not conversational AI chat platforms.
Before you start, make sure you have:
To connect Rovo Dev CLI to the Forge MCP server, follow the instructions in our support documentation.
Add the following configuration to your ~/.rovodev/mcp.json file:
1 2{ "mcpServers": { "forge-knowledge": { "url": "https://mcp.atlassian.com/v1/forge/mcp", "transport": "http" } } }
1 2{ "mcpServers": { "forge-knowledge": { "url": "https://mcp.atlassian.com/v1/forge/mcp" } } }
For older versions of Cursor, you may need to use a command-based configuration. See the Cursor MCP documentation for details.
Add a mcp.json file manually:
mcp.json file in your workspace or home directory:1 2{ "servers": { "forge-knowledge": { "url": "https://mcp.atlassian.com/v1/forge/mcp", "type": "http" } }, "inputs": [] }
For the latest setup instructions, see the VS Code MCP documentation.
If your IDE supports MCP via a proxy, you can use the mcp-remote tool:
1 2npx -y mcp-remote https://mcp.atlassian.com/v1/forge/mcp
If you encounter issues, try specifying an older version:
1 2npx -y mcp-remote@0.1.13 https://mcp.atlassian.com/v1/forge/mcp
When working with AI coding agents, it’s important to explicitly instruct them to use the Forge-related tools provided by the MCP server. This ensures their work is based on the most up-to-date Forge knowledge, as some agents may not use these tools unless prompted and might otherwise attempt to build your app without referencing the latest documentation or guidance.
forge-howto guide for a high-level context.ui-kit-guide, forge-modules-list, and app-manifest-guide as needed.search-forge-docs or query-cloud-platform-knowledge-fragments.Rate this page: