MCP Catalogs
Home

memory vs uipath-mcp-python

Side-by-side comparison to help you pick between these two MCP servers.

memory
by modelcontextprotocol
uipath-mcp-python
by UiPath
Stars★ 85,748★ 8
30d uses
Score7741
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
Developer ToolsProductivityOps & Infra
LanguageTypeScriptPython
Last committhis monththis month

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

uipath-mcp-python · Summary

Python SDK for building and hosting MCP servers within UiPath automation platform.

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

uipath-mcp-python · Use cases

  • Creating custom MCP servers for UiPath automation workflows
  • Packaging and deploying Python-based automation tools to UiPath platform
  • Integrating third-party systems with UiPath through MCP protocol

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

{
  "servers": {
    "memory": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-memory"
      ]
    }
  }
}

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}

uipath-mcp-python · Install

Installation

Install the SDK via pip:

pip install uipath-mcp

Or using uv:

uv add uipath-mcp

Configuration

Create an mcp.json file to define your servers:

{
  "servers": {
    "my-python-server": {
        "type": "stdio",
        "command": "python",
        "args": ["server.py"]
    },
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.