everything vs companies-house-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | companies-house-mcp by stefanoamorelli | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
companies-house-mcp · Summary
UK Companies House API MCP server with 45+ tools for company information, search, officers, filing history, PSC, and charges.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingcompanies-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.