memory vs companies-house-mcp
Side-by-side comparison to help you pick between these two MCP servers.
memory by modelcontextprotocol | companies-house-mcp by stefanoamorelli | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Knowledge GraphAI / LLM ToolsProductivity | FinanceDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
companies-house-mcp · Summary
UK Companies House API MCP server with 45+ tools for company information, search, officers, filing history, PSC, and charges.
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
companies-house-mcp · Use cases
- Business research and due diligence by querying UK company information
- Compliance monitoring by tracking officer appointments and disqualifications
- Financial analysis by examining company accounts and charges
- Investigating corporate structures through PSC ownership data
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"]
}
}
}companies-house-mcp · Install
Installation
1. Get an API key
Register at the [Companies House Developer Hub](https://developer.company-information.service.gov.uk/) and create an application.
2. Configure your MCP client
Add to your Claude Desktop config:
{
"mcpServers": {
"companies-house": {
"command": "npx",
"args": ["-y", "companies-house-mcp-server"],
"env": {
"COMPANIES_HOUSE_API_KEY": "your_api_key_here"
}
}
}
}Build from source (optional)
git clone https://github.com/stefanoamorelli/companies-house-mcp.git
cd companies-house-mcp
npm install && npm run buildThen point your MCP client to node /path/to/companies-house-mcp/dist/index.js.