everything vs sec-edgar-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | sec-edgar-mcp by stefanoamorelli | |
|---|---|---|
| Stars | ★ 85,748 | ★ 266 |
| 30d uses | — | — |
| Score | 77 | 51 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
sec-edgar-mcp · Summary
MCP server providing AI assistants with precise access to SEC EDGAR financial filings and company data.
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
sec-edgar-mcp · Use cases
- Financial analysis and research using parsed SEC data
- Compliance monitoring through automated filing analysis
- Investment decision support with accurate company financials
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-everythingsec-edgar-mcp · Install
Installation
Docker (Recommended)
{
"mcpServers": {
"sec-edgar-mcp": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "SEC_EDGAR_USER_AGENT=Your Name (your@email.com)",
"stefanoamorelli/sec-edgar-mcp:latest"
]
}
}
}Other Methods
Other installation methods (pip, conda, uv) are available in the [documentation](https://sec-edgar-mcp.amorelli.tech/setup/quickstart).
HTTP Transport
For platforms like Dify, use streamable HTTP:
python -m sec_edgar_mcp.server --transport streamable-http --port 9870