shaderc-vkrunner-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
shaderc-vkrunner-mcp by mehmetoguzderin | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 6 | ★ 85,748 |
| 30d uses | — | — |
| Score | 34 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | C++ | TypeScript |
| Last commit | 9 mo ago | this month |
shaderc-vkrunner-mcp · Summary
A toy MCP server for AI agents to safely code, compile, and run GPU shaders using Vulkan via CPU emulation.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
shaderc-vkrunner-mcp · Use cases
- AI-assisted shader development and optimization
- Vulkan shader education and experimentation
- Testing shader features without physical GPU hardware
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
shaderc-vkrunner-mcp · Install
Installation
- Clone the repository:
git clone https://github.com/mehmetoguzderin/shaderc-vkrunner-mcp
cd shaderc-vkrunner-mcp- Build the Docker image:
docker build -t shaderc-vkrunner-mcp -f Dockerfile .VS Code Integration
Add this to your VS Code mcp.json:
"shaderc-vkrunner-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-v", "${workspaceFolder}:/work",
"shaderc-vkrunner-mcp",
"--work-dir",
"/work"
]
}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