Joomla MCP Server
The Joomla MCP Server enables AI assistants to manage Joomla website content through the Web Services API.
Retrieve Content: Get all articles and categories from the Joomla website
Create Articles: Add new articles with optional title, category, immediate publication, and automatic plain text to HTML conversion
Update Articles: Modify existing articles including title, introductory text (
introtext), full content (fulltext), and meta description (metadesc)Manage Article States: Control article publishing status (published, unpublished, archived, trashed)
Delete Articles: Soft-delete articles by moving them to trash for potential recovery
Enables interaction with Joomla websites via the Web Services API, providing tools to manage articles including retrieving articles, listing categories, creating new content, updating existing articles, changing publication states, and deleting articles.
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., "@Joomla MCP Serverlist all articles on my Joomla site"
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.
Joomla MCP Server
Table of Contents
Related MCP server: cms-mcp-hub
Introduction
The Joomla MCP (Model Context Protocol) Server enables AI assistants, such as Claude, to interact with Joomla websites via the Joomla Web Services API. It provides tools to manage articles using an AI assistant.
Features
Retrieve all articles from a Joomla website
List all content categories
Create new articles
Manage article states (published, unpublished, trashed, or archived)
Delete articles
Update articles (requires both introtext and fulltext, with a "Read more" break)
Requirements
Python 3.11+
Joomla 4.x or 5.x with the Web Services API plugin enabled
API Bearer token for authentication
Installation
Create a Joomla API Token
Access User Profile: Log in to the Joomla Administrator interface and navigate to the Users menu, then select Manage.
Edit Super User: Find and click on the Super User account (or the desired user) to edit their profile.
Generate Token: Go to the Joomla API Token tab, click the Generate button, and copy the displayed token.
Install the Project/Server locally
Clone the repository:
git clone https://github.com/nasoma/joomla-mcp-server.git
cd joomla-mcp-server
Set up a virtual environment and install dependencies using
uv(a Python dependency manager, see uv documentation). If uv is installed run:
uv sync Installing on Claude or other AI assistants
Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"Joomla Articles MCP": {
"command": "{{PATH_TO_UV}}",
"args": [
"--directory",
"{{PATH_TO_PROJECT}}",
"run",
"main.py"
],
"env": {
"JOOMLA_BASE_URL": "<your_joomla_website_url>",
"BEARER_TOKEN": "<your_joomla_api_token>"
}
}
}
}
Replace {{PATH_TO_UV}} with the path to uv (run which uv to find it) and {{PATH_TO_PROJECT}} with the project directory path (run pwd in the repository root).
Available Tools
1. get_joomla_articles()
Retrieves all articles from the Joomla website via its API.
2. get_joomla_categories()
Retrieves all categories from the Joomla website and formats them in a readable list.
3. create_article()
Creates a new article on the Joomla website via its API.
Parameters:
article_text(required): The content of the article (plain text or HTML)title(optional): The article title (inferred from content if not provided)category_id(optional): The category ID for the articleconvert_plain_text(optional, default: True): Auto-converts plain text to HTMLpublished(optional, default: True): Publishes the article immediately
4. manage_article_state()
Manages the state of an existing article on the Joomla website via its API.
Parameters:
article_id(required): The ID of the existing article to check and updatetarget_state(required): The desired state for the article (1=published, 0=unpublished, 2=archived, -2=trashed)
5. delete_article()
Deletes an article from the Joomla website via its API.
Parameters:
article_id(required): The ID of the article to delete
6. update_article()
Updates an existing article on the Joomla website via its API. Both introtext and fulltext are required to align with Joomla's article structure (introtext for the teaser, fulltext for the content after a "Read more" break).
Parameters:
article_id(required): The ID of the article to updatetitle(optional): New title for the articleintrotext(required): Introductory text for the article (plain text or HTML)fulltext(required): Full content for the article (plain text or HTML)metadesc(optional): Meta description for the article
Security Considerations
The Joomla API Token has access to your site. Treat it the same way you treat your passwords.
The server sanitizes HTML content to prevent XSS attacks
Ensure your Joomla website uses HTTPS to secure API communications.
License
This project is licensed under the MIT License.
Available Tools
6 toolscreate_articleC
Create a new article on the Joomla website.
| Name | Required | Description | Default |
|---|---|---|---|
| article_text | Yes | ||
| title | No | ||
| category_id | No | ||
| convert_plain_text | No | ||
| published | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool creates an article but fails to mention critical aspects like whether this is a write operation (implied but not explicit), what permissions are needed, how errors are handled, or the effect of default parameters like 'published: true'. This leaves significant gaps in understanding the tool's 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?
The description is a single, direct sentence with no wasted words, making it highly concise and front-loaded. It efficiently communicates the core action without unnecessary elaboration, which is appropriate for a basic tool description.
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 tool has 5 parameters with 0% schema coverage, no annotations, and an output schema (which reduces the need to describe return values), the description is incomplete. It covers the basic purpose but misses parameter explanations, usage context, and behavioral details, making it minimally adequate but with clear gaps for a creation tool in a CMS environment.
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 description coverage is 0%, meaning parameter titles provide minimal semantic context. The description adds no information about parameters beyond the tool's name, such as explaining what 'convert_plain_text' does, how 'category_id' relates to existing categories, or the implications of 'published'. This fails to compensate for the low schema coverage, leaving parameters largely unexplained.
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 verb ('Create') and resource ('new article on the Joomla website'), making the purpose immediately understandable. However, it doesn't distinguish this tool from its sibling 'update_article' beyond the basic create vs. update difference, missing an opportunity to clarify scope or uniqueness.
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 no guidance on when to use this tool versus alternatives like 'update_article' or 'manage_article_state'. It also lacks information about prerequisites, such as whether the category must exist or if authentication is required, leaving the agent without context for decision-making.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_joomla_articlesB
Retrieve all articles from the Joomla website.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states 'retrieve all articles' but doesn't specify whether this returns all articles at once or uses pagination, what authentication is required, rate limits, or what happens with large datasets. For a read operation with zero annotation coverage, this leaves significant behavioral questions unanswered.
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, efficient sentence that directly states what the tool does without any wasted words. It's appropriately sized for a simple retrieval tool and front-loads the essential information.
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 tool has zero parameters, 100% schema coverage, and an output schema exists, the description's job is simplified. However, for a retrieval operation with no annotations, it should ideally mention something about the return format or data scope. The current description is minimally adequate but could provide more context about what 'all articles' entails.
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?
The tool has zero parameters with 100% schema description coverage, so the schema already fully documents the parameter situation. The description appropriately doesn't discuss parameters since none exist, maintaining focus on the tool's purpose without unnecessary detail.
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 action ('retrieve') and resource ('all articles from the Joomla website'), making the tool's purpose immediately understandable. It doesn't explicitly differentiate from siblings like 'get_joomla_categories', but the resource specificity provides adequate distinction for a read operation.
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 no guidance on when to use this tool versus alternatives like 'get_joomla_categories' or 'create_article'. It doesn't mention prerequisites, limitations, or appropriate contexts for selecting this retrieval method over other options.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_joomla_categoriesB
Retrieve all categories from the Joomla website.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action ('retrieve') but doesn't mention any behavioral traits like whether it's read-only, if it requires authentication, rate limits, or what the output format is. This leaves significant gaps for a tool that interacts with a website.
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, efficient sentence that directly states the tool's purpose without any wasted words. It is appropriately sized and front-loaded, making it easy to understand at a glance.
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 tool has 0 parameters, 100% schema coverage, and an output schema exists, the description is minimally adequate. However, it lacks behavioral context (e.g., authentication needs, rate limits) and doesn't explain when to use it relative to siblings, which are gaps considering the complexity of interacting with a Joomla website.
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?
The tool has 0 parameters, and the schema description coverage is 100%, so there are no parameters to document. The description doesn't need to add parameter semantics, and it appropriately avoids unnecessary details, earning a baseline score of 4 for this context.
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 verb ('retrieve') and resource ('all categories from the Joomla website'), making the purpose unambiguous. However, it doesn't explicitly differentiate from sibling tools like 'get_joomla_articles', which retrieves articles rather than categories, though this distinction is implied by the resource name.
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 no guidance on when to use this tool versus alternatives, such as whether it should be used for listing categories before creating articles or how it relates to sibling tools like 'get_joomla_articles'. It lacks explicit context or exclusions, leaving usage unclear beyond the basic purpose.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
manage_article_stateC
Manage the state of an existing article on the Joomla website (published, unpublished, archived, trashed)
| Name | Required | Description | Default |
|---|---|---|---|
| article_id | Yes | ||
| target_state | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
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 implies a mutation operation ('manage the state') but doesn't disclose behavioral traits such as required permissions, whether changes are reversible, rate limits, or what happens to the article in each state. The description is minimal and lacks critical context for safe usage.
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, efficient sentence that front-loads the purpose. It avoids unnecessary words, though it could be more structured (e.g., separating usage notes). Every part earns its place by specifying the action and states.
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 (state mutation tool), no annotations, and an output schema (which reduces need to explain returns), the description is incomplete. It covers the basic purpose but lacks usage guidelines, parameter details, and behavioral transparency, making it minimally adequate but with clear gaps for a mutation tool.
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 description coverage is 0%, so the description must compensate. It mentions 'target_state' with examples (published, unpublished, archived, trashed) but doesn't explain the mapping to integer values or provide details on 'article_id' (e.g., format, sourcing). This adds some meaning but is insufficient for the two undocumented parameters.
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 verb ('manage') and resource ('existing article on the Joomla website') with specific states listed (published, unpublished, archived, trashed). It distinguishes from siblings like 'create_article' (creation vs. state management) and 'move_article_to_trash' (specific state vs. general management), though it doesn't explicitly name alternatives.
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 no guidance on when to use this tool versus alternatives like 'move_article_to_trash' or 'update_article'. It mentions managing states but doesn't clarify prerequisites (e.g., article must exist) or exclusions (e.g., not for new articles).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
move_article_to_trashA
Delete an article by moving to the trashed state on the Joomla website, allowing recovery.
| Name | Required | Description | Default |
|---|---|---|---|
| article_id | Yes | ||
| expected_title | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes the action as moving to a trashed state with recovery, which clarifies it's a soft delete. However, it lacks details on permissions, side effects, or error handling, leaving gaps in behavioral understanding.
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, efficient sentence that front-loads the key action and includes essential context ('allowing recovery') without any wasted words, making it highly concise and well-structured.
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 tool's complexity (soft deletion with 2 parameters) and the presence of an output schema (which handles return values), the description is mostly complete. It covers the core purpose and behavioral trait (recovery), but lacks parameter explanations and detailed usage guidelines, slightly reducing 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 description coverage is 0%, so the description must compensate for undocumented parameters. It doesn't mention any parameters, failing to explain 'article_id' or 'expected_title' beyond what the schema provides. Baseline is 3 due to the schema doing the heavy lifting, but no additional semantic value is added.
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 specific action ('Delete an article by moving to the trashed state') and resource ('on the Joomla website'), distinguishing it from siblings like 'create_article' or 'update_article' by focusing on deletion with recovery capability.
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 usage context by mentioning 'allowing recovery,' which suggests this is for soft deletion rather than permanent removal. However, it doesn't explicitly state when to use this versus alternatives like 'manage_article_state' or other deletion methods, leaving some ambiguity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_articleC
Update an existing article on the Joomla website.
| Name | Required | Description | Default |
|---|---|---|---|
| article_id | Yes | ||
| title | No | ||
| introtext | No | ||
| fulltext | No | ||
| metadesc | No | ||
| convert_plain_text | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but only states it's an update operation without disclosing behavioral traits. It doesn't mention authentication needs, rate limits, whether changes are reversible, what happens to unspecified fields, or the response format. This is inadequate for a mutation tool with zero annotation coverage.
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, clear sentence with no wasted words. It's front-loaded with the core purpose, making it efficient and easy to parse, though this conciseness comes at the cost of detail in other dimensions.
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 tool's complexity (6 parameters, mutation operation, no annotations) and the presence of an output schema, the description is incomplete. It doesn't compensate for the lack of annotations or low schema coverage, failing to provide necessary context for safe and effective use, despite the output schema potentially covering return values.
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?
The description adds no meaning beyond what the input schema provides. With 0% schema description coverage and 6 parameters (including complex ones like 'introtext' and 'convert_plain_text'), the description fails to explain what these parameters do, their formats, or how they affect the update. This leaves parameters largely undocumented.
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 action ('Update') and resource ('an existing article on the Joomla website'), making the purpose immediately understandable. However, it doesn't distinguish this tool from its sibling 'manage_article_state' which might also modify articles, nor does it specify what aspects of an article can be updated beyond the general concept.
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 no guidance on when to use this tool versus alternatives like 'manage_article_state' for state changes or 'create_article' for new articles. It mentions 'existing article' which implies a prerequisite of article existence but doesn't explicitly state this or reference sibling tools for checking or creating articles.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Most tools have distinct purposes, but there is some overlap between 'manage_article_state' and 'move_article_to_trash' since moving to trash is a specific state change. The descriptions clarify this, but an agent might initially confuse them as both handle article states. Other tools like create, get, and update are clearly differentiated.
The naming is mixed: some tools use verb_noun (e.g., create_article, update_article), while others include 'joomla' prefix (e.g., get_joomla_articles, get_joomla_categories) and one uses a different verb style (manage_article_state). This inconsistency reduces predictability, though the names remain readable and understandable.
With 6 tools, the count is well-scoped for managing articles and categories in a Joomla context. Each tool serves a specific function, and there are no extraneous tools, making it appropriate for the server's purpose without being overwhelming or insufficient.
The tool set covers core CRUD operations for articles (create, get, update, delete via trash) and includes category retrieval, which is essential for Joomla content management. A minor gap exists in lacking direct category management tools (e.g., create or update categories), but agents can still perform basic workflows with the provided tools.
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
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
An MCP server that provides an API to LLMs to manage their JumpCloud resources.
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
MCP Server for Slima - AI Writing IDE for Novel Authors with AI Beta Reader.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA comprehensive MCP server for WordPress automation that enables users to manage content, themes, and site configurations using AI-driven workflows and the WordPress REST API. It provides a wide array of tools for site planning, management, and optimization compatible with tools like Cursor and Claude.681ISC
- FlicenseNot gradedqualityDmaintenanceA universal connector hub that proxies Claude.ai tool calls to any CMS that runs an MCP server, enabling natural language interactions with Drupal, Joomla, WordPress, and more through a single endpoint.
- AlicenseNot gradedqualityBmaintenanceOpen-source MCP server that turns any CMS backend into an AI-agent-ready content management system. It provides tools for content CRUD, idea management, and publication tracking, with safety features requiring human approval for publishing.MIT
- AlicenseNot gradedqualityDmaintenanceMCP server for WordPress content management that provides a secure interface for AI assistants to interact with WordPress sites, enabling content creation, editing, and media management without destructive operations.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/nasoma/joomla-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server