Alfresco MCP Server
Enables natural language interaction with Alfresco content management, allowing users to fetch document info, add tags and comments, and retrieve audit information.
README
Info
This project was created using this guide: https://medium.com/data-engineering-with-dremio/building-a-basic-mcp-server-with-python-4c34c41031ed
- note: instead of using uv as package manager, I used pip
Getting started
Running locally
be sure node and npm are installed. I used node 20.18.3 and npm 10.8.2
Running pip3 install -r requirements.txt will get the required modules installed.
use the .envtemplate file to create a .env file. The BASE_URL is the url to your Alfresco install. Make sure the credentials are correct as well
Now run with python3 main.py. You will see a confirmation that the MCP server is running.
If you are using Claude desktop, add the following to the claude config file (via the developer section under settings)
{
"mcpServers": {
"alfrescomcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote", "http://localhost:8000/mcp"]
}
}
}
Once your chat interface is setup you can ask away
note
- npx needs to be installed to run locally...and....
- You may have to check permissions on the npm folder: sudo chown -R 501:20 "/Users/<yourusername>/.npm"
- The url to the mcp server (http streaming) can be changed to match your IP or wherever the mcp service is running. Keep in mind: local chat clients like claude will require https to access the mcp server remotely (not on localhost). You will need to use https instead of http. There are self signed certificates created automatically
Running via docker
- To run the container standalone, you can build a container locally (dockerfile is in the root of the project). This creates the container image in your local docker repository. There's a docker compose yml with environment variables set. be sure to change the BASE_URL and credentials to match your alfresco endpoint
If you would like to have a fully built yaml that includes alfresco community, use this link: https://github.com/robwilds/community25.x
Clone the entire aforementioned repo then run docker compose up -d
Tools you can use
- Audit information based on nodeid
- Comments for a node based on nodeid
- The audit apps that are configured
- Fetch document info by name...this will return nodeid
- Current alfresco version
- Get tag information for a document based on nodeid
- Add a tag to a node
- Add comments to a node
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.