everything vs seedream-image-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | seedream-image-mcp by wearzdk | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 40 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsMediaProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 5 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
seedream-image-mcp · Summary
An MCP server integrating SeeDream AI image generation into various AI clients like Cursor and Claude.
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
seedream-image-mcp · Use cases
- Adding visually appealing images to web pages created by AI assistants
- Generating illustrations for content created by AI tools
- Enhancing AI-generated presentations with custom imagery
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-everythingseedream-image-mcp · Install
Installation
- Get BytePlus API Key from the [Volcano Engine Console](https://console.volcengine.com/ark/region:ark+cn-beijing/apiKey)
- Run with npx:
npx seedream-image-mcp --ark-key=YOUR_API_KEY- Configure in Claude Desktop or Cursor:
{
"mcpServers": {
"seedream-image": {
"command": "npx",
"args": ["seedream-image-mcp", "--ark-key=YOUR_API_KEY"]
}
}
}