Confluence Cloud MCP Server
Provides tools for managing Confluence Cloud pages, spaces, content editing with session-based change tracking, native macro support, search, media attachments, and graph-based navigation via Confluence Cloud API.
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., "@Confluence Cloud MCP Serverget the content of page 'Product Roadmap 2025'"
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.
Confluence Cloud MCP Server
A Model Context Protocol server for interacting with Confluence Cloud. Structured page editing with session-based change tracking, native macro support, and graph-based navigation.
Install
Claude Desktop (one-click)
Download confluence-cloud-mcp.mcpb and open it — Claude Desktop will prompt for your Confluence credentials.
Claude Code
claude mcp add confluence-cloud -e CONFLUENCE_API_TOKEN=your-token -e CONFLUENCE_EMAIL=your-email -e CONFLUENCE_HOST=https://your-team.atlassian.net -- npx -y @aaronsb/confluence-cloud-mcpManual (any MCP client)
{
"mcpServers": {
"confluence-cloud": {
"command": "npx",
"args": ["-y", "@aaronsb/confluence-cloud-mcp"],
"env": {
"CONFLUENCE_API_TOKEN": "your-api-token",
"CONFLUENCE_EMAIL": "your-email",
"CONFLUENCE_HOST": "https://your-team.atlassian.net"
}
}
}
}Credentials
Generate an API token at Atlassian Account Settings.
Related MCP server: MCP Atlassian Server
Tools
Tool | Description |
| Get, create, update, delete, move, copy, or pull pages for editing |
| Structural block editing within a tracked session — patch sections, append, replace, find/replace, sync |
| List spaces, get space details, or manage space configuration |
| Search using CQL, full-text, labels, or contributors |
| Upload, download, list, or delete page attachments |
| Traverse page hierarchy, discover backlinks (via GraphQL), forward links, and related pages |
| Batch multiple operations with result references ( |
Each tool accepts an operation parameter (except queue_confluence_operations which takes an operations array). Per-tool documentation is available as MCP resources at confluence://tools/{tool_name}/documentation.
Key Features
Session-based editing — Pull a page into a tracked session, make surgical edits to individual blocks (sections, paragraphs, macros, tables), then sync only what changed. No full-page rewrites.
Native macro support — Status badges, info/warning/error panels, expand blocks, and table of contents render as readable :::directive syntax. The server handles ADF serialization with correct native node types.
GraphQL navigation — Backlinks and forward links use the Atlassian GraphQL gateway's link graph for accurate, fast relationship discovery. Falls back to REST when GraphQL is unavailable.
Rendering facades — Every response is token-efficient markdown with context-aware next-step hints. No raw JSON.
MCP Resources
Resource | Description |
| Available macro registry with parameter schemas and usage examples |
Architecture
See docs/architecture/INDEX.md for the 8 ADRs covering the five-layer architecture, hybrid client, content model, session editing, macro handling, navigation, and rendering facades.
License
Available Tools
8 toolsedit_confluence_contentB
Line-addressed content editing within a scratchpad buffer. View, insert, replace, or remove lines, then submit to Confluence. Requires a scratchpadId from create or pull_for_editing.
| Name | Required | Description | Default |
|---|---|---|---|
| operation | Yes | The editing operation to perform | |
| scratchpadId | No | Scratchpad ID from create or pull_for_editing (required for all ops except list) | |
| afterLine | No | Line number to insert after (0 = prepend). For insert_lines. | |
| startLine | No | Start of line range (1-based). For view, replace_lines, remove_lines. | |
| endLine | No | End of line range (1-based, inclusive). For view, replace_lines, remove_lines. | |
| content | No | Text content (newlines create multiple lines). For insert_lines, append_lines, replace_lines. | |
| message | No | Version message for submit operation |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description bears full responsibility for transparency. It explains that operations are performed on a scratchpad and then submitted to Confluence, giving a sense of a batched workflow. However, it does not detail the effect of each operation on the scratchpad state, whether edits are immediately visible, or what happens on discard. The description is moderately transparent but lacks depth on lifecycle and side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description consists of two concise sentences with no redundancy. The first sentence immediately conveys the core purpose and mechanism (line-addressed editing, scratchpad buffer). The second sentence adds a critical prerequisite. Every sentence earns its place, making it highly efficient for an AI agent.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (7 parameters, 8 enum values) and no output schema or annotations, the description adequately introduces the tool's purpose and workflow but lacks details on return values, error scenarios, and operation sequencing. It is sufficient for a basic understanding but incomplete for fully autonomous use without additional inference from the schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so parameters are already documented. The description adds context by emphasizing the scratchpadId requirement and the types of operations (view, insert, replace, remove). This aligns with the operation enum but does not significantly augment the schema's descriptions. The value added is modest, keeping the score at baseline 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it is for line-addressed content editing within a scratchpad buffer, listing specific operations (view, insert, replace, remove) and the action of submitting to Confluence. It distinguishes itself from sibling tools like manage_confluence_page by focusing on line-level editing. However, it does not explicitly differentiate from all siblings, leaving some ambiguity about when to use this versus other content tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions that a scratchpadId from create or pull_for_editing is required, implying a prerequisite workflow. However, it does not specify when to use this tool versus alternatives, such as when full-page editing would be more appropriate. There is no explicit when-not or list of alternative tools for comparison.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
manage_confluence_mediaB
Upload, download, list, view, or delete page attachments and media. Use view to display images inline.
| Name | Required | Description | Default |
|---|---|---|---|
| operation | Yes | The media operation to perform | |
| pageId | No | Page ID (required for upload, list) | |
| attachmentId | No | Attachment ID (required for download, delete, get_info) | |
| filename | No | Filename for upload | |
| content | No | Base64-encoded file content for upload (or use workspaceFile instead) | |
| mediaType | No | MIME type for upload (e.g., image/png) | |
| workspaceFile | No | Read file from workspace instead of base64 content (alternative to content for upload) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It mentions operations like delete and upload but does not disclose side effects, authentication needs, or what 'view' entails beyond inline display. This is insufficient for safe invocation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very short (two sentences) and front-loaded with key operations. Every sentence is relevant, though it could be slightly more informative without becoming verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 7 parameters, 6 operations, and no output schema, the description is incomplete. It does not explain return values for each operation, nor does it specify parameter-to-operation mappings beyond basic schema descriptions.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds value by explaining that 'view' is for inline display, but this is minor. Most parameter semantics are already clear from the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Upload, download, list, view, or delete page attachments and media.' It distinguishes from sibling tools like edit_confluence_content and manage_confluence_page by focusing on media operations on attachments.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is given on when to use this tool versus alternatives. It lists operations but does not specify scenarios or exclusions, leaving the agent to infer usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
manage_confluence_pageB
Get, create, update, delete, move, copy, archive, or pull pages for editing. Manage labels and content properties. Create returns a scratchpad for composing content before publishing. Use pull_for_editing to load existing page content into a scratchpad. Archive/unarchive pages or entire page trees.
| Name | Required | Description | Default |
|---|---|---|---|
| operation | Yes | The operation to perform | |
| pageId | No | Page ID (required for get, update, delete, move, copy, get_versions, pull_for_editing, archive, archive_tree, unarchive) | |
| spaceId | No | Space ID (required for create, usable for list_archived) | |
| spaceKey | No | Space key (for list_archived) | |
| title | No | Page title (required for create, optional for update) | |
| parentId | No | Parent page ID (optional for create, required for move, optional for copy) | |
| expand | No | Additional data to include in the response | |
| labels | No | Labels to add (for add_labels operation) | |
| label | No | Label to remove (for remove_label operation) | |
| propertyKey | No | Content property key (for get_property, set_property, delete_property) | |
| propertyValue | No | Content property value as JSON object (for set_property) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions behavior like scratchpad creation and archive operations, but lacks disclosure of auth needs, rate limits, destructive nature of delete/archive operations, or response format. This is insufficient for safe invocation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficient, listing operations in a single line then adding key details about scratchpad and archiving. It is front-loaded with the most important information and avoids redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite the tool's complexity (11 parameters, 19 operations), the description lacks guidance on when to use each operation, error handling, output structure, and prerequisites. Without an output schema, the agent lacks essential context for proper invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with clear descriptions for all parameters. The description adds context about scratchpad creation and label/property management, but does not significantly enhance parameter understanding beyond the schema. Baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool manages Confluence pages with a comprehensive list of operations (get, create, update, delete, move, copy, archive, etc.), distinguishing it from sibling tools that handle content editing, media, or spaces.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides internal guidance (e.g., 'Use pull_for_editing to load existing page content into a scratchpad'), but does not explicitly compare this tool to siblings like 'edit_confluence_content' or 'manage_confluence_space', leaving the agent to infer when to use alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
manage_confluence_spaceC
List spaces, get space details, or manage space configuration.
| Name | Required | Description | Default |
|---|---|---|---|
| operation | Yes | The operation to perform | |
| spaceId | No | Space ID (required for get, update, get_permissions) | |
| spaceKey | No | Space key (required for create) | |
| name | No | Space name (required for create) | |
| cursor | No | Pagination cursor | |
| limit | No | Results per page (default 25, max 250) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description bears full burden. It states it can list, get, and manage, but fails to disclose that it can create, update, and get permissions (evident only from schema). No mention of side effects, authorization, or idempotency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One concise sentence, front-loaded with specific actions. However, 'manage configuration' is vague and could be replaced with more precise terms without adding length.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 5 operations, 6 parameters, and no output schema, the description is insufficient. It omits details on create/update/get_permissions outcomes, return values, and pagination behavior. Does not cover all use cases.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% (all 6 parameters described). Description adds minimal high-level context but doesn't explain parameter interdependencies or use cases beyond what schema already provides. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly identifies verb and resource: 'list spaces, get space details, or manage space configuration' and distinguishes from page/media tools in siblings. However, 'manage configuration' is vague, not specifying create/update/permissions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs siblings like manage_confluence_page or search_confluence. No context on prerequisites or alternative scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
manage_workspaceA
Stage files in the local workspace for attachment operations. List, read, write, delete files, or create directories. Supports nested paths (e.g. "projects/images/photo.png"). Downloaded attachments land here; upload can read from here. All responses include the absolute filesystem path.
| Name | Required | Description | Default |
|---|---|---|---|
| operation | Yes | The workspace operation to perform | |
| filename | No | File or directory path, supports nesting with / separators (required for read, write, delete, mkdir, move) | |
| destination | No | Destination path for move operation — works like unix mv: rename a file (move filename:"old.txt" destination:"new.txt"), relocate it (move filename:"file.txt" destination:"subdir/file.txt"), or both at once | |
| content | No | Base64-encoded file content (required for write) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It mentions responses include absolute filesystem path and supports nested paths. However, it does not disclose overwrite behavior on write, error handling, or permission requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, front-loaded with key info, no redundancy. Every sentence adds necessary context efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a multi-operation tool with 4 params, the description covers operations and path support. However, missing details on default behaviors (e.g., overwrite, empty read) and error scenarios reduce completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, baseline 3. The description adds value by explaining move behavior like unix mv, content encoding, and when filename is required, which goes beyond schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it manages files in a local workspace for attachment operations, listing operations like list, read, write, delete, mkdir, move. It distinguishes itself from sibling Confluence tools by context.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explains the tool stages files for attachment operations and where downloaded/uploaded files go. It does not explicitly state when not to use or alternatives, but the sibling context makes it clear this is for workspace file ops, not Confluence.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
queue_confluence_operationsA
Batch multiple Confluence operations in a single call. Supports result references ($0.pageId) and per-operation error strategies.
| Name | Required | Description | Default |
|---|---|---|---|
| operations | Yes | Array of operations to execute sequentially (1-16) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description provides some behavioral context (batching, references, error strategies) but lacks details on ordering, atomicity, rate limits, or partial failure behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with core purpose, no unnecessary words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given one parameter and no output schema, the description adequately covers batching and references, but omits result format and max operations limit (present in schema only).
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the description adds marginal value beyond schema field descriptions. It mentions result references and error strategies, which the schema already covers via onError enum and description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it batches multiple Confluence operations in a single call, with support for result references and error strategies. This distinguishes it from sibling tools that perform individual operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when batching operations, but does not explicitly state when to use it versus alternatives (e.g., individual tools) or provide when-not guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_confluenceA
Search Confluence using CQL (Confluence Query Language), full-text search, or filter by labels/contributors.
| Name | Required | Description | Default |
|---|---|---|---|
| operation | Yes | Search operation type | |
| cql | No | CQL query string (for cql operation) | |
| query | No | Search text (for fulltext operation) | |
| labels | No | Labels to filter by (for by_label) | |
| contributor | No | User ID or email (for by_contributor) | |
| spaceKey | No | Limit search to a specific space | |
| cursor | No | Pagination cursor | |
| limit | No | Results per page (default 25, max 100) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description does not disclose behavioral traits such as read-only nature, required permissions, pagination details, or return format. The schema provides parameter descriptions, but behavioral context is missing.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence covering the main operations. It is efficient but could be better structured by front-loading the core action and separating methods. Still, it is not wasteful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema and limited detail, the description fails to explain what the search returns, pagination behavior, or how to use the cursor parameter. The input schema covers parameters, but overall context for a complex tool is insufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds value by grouping operations (CQL, full-text, by_label, by_contributor, recent) and explaining the CQL acronym, which goes beyond the schema's individual parameter descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose as searching Confluence using specific methods (CQL, full-text, labels, contributors). It distinguishes from sibling tools that focus on editing, managing, or navigating Confluence content.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description lists available search operations but does not explicitly guide when to use this tool over siblings or provide context on when not to use it. The usage can be inferred but lacks direct guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
8 tool updates
v0.5.1- First observed
edit_confluence_content - First observed
manage_confluence_media - First observed
manage_confluence_page - First observed
manage_confluence_space - First observed
manage_workspace - First observed
navigate_confluence - First observed
queue_confluence_operations - First observed
search_confluence
TDQS
Each tool addresses a distinct concern: content editing, media, page management, space management, workspace files, navigation, batch operations, and search. There is no functional overlap or ambiguity.
Most tools follow a verb_confluence_noun pattern (e.g., edit_confluence_content, manage_confluence_page). However, 'manage_workspace' deviates by omitting 'confluence' and 'queue_confluence_operations' uses 'operations' instead of a more concrete noun, slightly breaking consistency.
With 8 tools, the surface is well-scoped for a Confluence content management server. Each tool serves an essential function without unnecessary bloat or sparseness.
The tool set covers full lifecycle management for pages (create, read, update, delete, move, copy, archive), spaces, media, search, navigation, and batch operations. The scratchpad-based editing workflow is comprehensive. No obvious gaps are present.
Maintenance
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
Connect to Atlassian Jira, Confluence, and Compass to search, create, and manage your work.
Streamline your Attio workflows using natural language to search, create, update, and organize com…
Connect your team's living knowledge base — docs, data, issues, CRM — to Claude and ChatGPT.
Query your org's data in natural language — read-only MCP access to SQL, NoSQL, files & warehouses.
Related MCP Servers
- FlicenseAqualityFmaintenanceEnables AI assistants to interact with Confluence Cloud for managing spaces, pages, and content via the Model Context Protocol (MCP).1115-
- AlicenseAqualityDmaintenanceIntegrates with Atlassian Cloud products (Confluence and Jira) to enable AI assistants to search, read, create, and manage pages, issues, comments, attachments, and export content through natural language interactions.403,831MIT
- FlicenseAqualityDmaintenanceEnables AI assistants to create, update, delete, and search Confluence pages directly through natural language commands in Cursor, with support for space management and page history.172-
- AlicenseNot gradedqualityDmaintenanceEnables interaction with Atlassian Confluence and Jira through natural language, allowing users to search, create, update, and transition issues and pages.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/aaronsb/confluence-cloud'
If you have feedback or need assistance with the MCP directory API, please join our Discord server