Universal Context Manager MCP Server - AI Productivity Platform
Universal Context Manager (UCM) Model Context Protocol (MCP) server for AI-native package management.
Get your auth token from https://ucm.utaba.ai
- --auth-token (required): Authentication token in format {authorid}:{apikey}
The server provides 11 MCP tools following the ucm_ naming convention:
ucm_health_check - Check MCP server and UCM API connectivityucm_connect - Get the UCM quickstart guide (Tell your AI to load this first)ucm_get_author_index - Generate dynamic markdown index for an authorucm_list_repositories - List all repositories for an authorucm_list_artifacts - Browse the 4-level hierarchyucm_get_artifact - Retrieve artifact content with auto-chunkingucm_get_chunk - Get chunks of large responsesucm_publish_artifact - Create/update artifactsucm_publish_artifact_fromfile - File-based publishing (preferred for large files)ucm_delete_artifact - Remove artifactsucm_get_artifact_versions - Get version historyAdd to your Claude Desktop configuration:
``json`
{
"mcpServers": {
"ucm": {
"command": "npx",
"args": [
"ucm-mcp-server",
"--auth-token", "YOUR_AUTH_TOKEN"
]
}
}
}
`bash`
claude mcp add -s user ucm-mcp-server npx ucm-mcp-server --auth-token your-authtoken-here-s user` for project scope.
Note: The above adds it to your user scope and will be available in all of your projects. You can remove
For detailed documentation, visit:
- UCM Platform: https://ucm.utaba.ai
- GitHub: https://github.com/utaba/ucm-mcp-server
BSD-3-Clause - See LICENSE file for details