polymarket-mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
polymarket-mcp-server by Justkokosixnine | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 3 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
polymarket-mcp-server · Summary
An MCP server providing AI-powered tools for Polymarket prediction market trading with real-time monitoring.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
polymarket-mcp-server · Use cases
- Automated market analysis and prediction trading on Polymarket
- Real-time monitoring of market trends and data
- AI-assisted decision making for prediction market investments
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
polymarket-mcp-server · Install
- Download the appropriate version for your OS from the Releases page
- Extract the downloaded file
- Follow the installation instructions provided
- Configure your preferences through the settings menu
For Claude Desktop, add to your config.json:
{
"mcpServers": {
"polymarket": {
"command": "python",
"args": ["path/to/polymarket_mcp/server.py"]
}
}
}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-everything