Search for Docker images and retrieve their READMEs and metadata from Docker Hub.
An MCP (Model Context Protocol) server that enables AI assistants to fetch comprehensive information about Docker images from Docker Hub, including README content, image metadata, and search functionality.
Add this server to your MCP client configuration:
{
"mcpServers": {
"docker-hub-readme": {
"command": "npx",
"args": ["docker-hub-readme-mcp-server"],
"env": {
"GITHUB_TOKEN": "your_github_token_here"
}
}
}
}
Note: The
GITHUB_TOKEN
is optional but recommended for higher API rate limits when fetching README content from GitHub.
Retrieves comprehensive README content and usage examples for Docker images.
Parameters:
{
"package_name": "nginx",
"version": "latest",
"include_examples": true
}
package_name
(string, required): Docker image name (e.g., "nginx", "postgres", "microsoft/dotnet")version
(string, optional): Specific image tag or "latest" (default: "latest")include_examples
(boolean, optional): Include usage examples and Docker commands (default: true)Returns: Formatted README content with Docker run commands, usage examples, and configuration documentation.
Fetches detailed image metadata, tags, and statistics from Docker Hub.
Parameters:
{
"package_name": "postgres",
"include_dependencies": true,
"include_tags": true
}
package_name
(string, required): Docker image nameinclude_dependencies
(boolean, optional): Include base image information (default: true)include_tags
(boolean, optional): Include available tags (default: true)Returns: Image metadata including available tags, maintainer info, download stats, and platform support.
Searches Docker Hub for images with filtering capabilities.
Parameters:
{
"query": "web server",
"limit": 20,
"official_only": false
}
query
(string, required): Search terms (image name, description, keywords)limit
(number, optional): Maximum number of results to return (default: 20, max: 100)official_only
(boolean, optional): Filter to official images only (default: false)Returns: List of matching images with names, descriptions, star counts, and pull statistics.
The server handles common error scenarios gracefully:
MIT
Access DevRev's APIs to manage work items, parts, search, and user information.
Integrates with the Neo N3 blockchain for wallet management, asset transfers, contract interactions, and blockchain queries.
An MCP server for AI-assisted frontend development using Chrome DevTools. Requires Google Chrome.
Generate MCP servers using Smithery with Cursor IDE integration.
Up-to-date Docs For Any Cursor Prompt
An experimental MCP server that uses the ast-grep CLI for code structural search, linting, and rewriting.
A collection of MCP servers designed for rapid prototyping in CS experimentation workshops.
An example of deploying a remote MCP server on Cloudflare Workers without authentication.
MCP Server that exposes Creatify AI API capabilities for AI video generation, including avatar videos, URL-to-video conversion, text-to-speech, and AI-powered editing tools.
Connects Blender to Claude AI via the Model Context Protocol (MCP), enabling direct interaction and control for prompt-assisted 3D modeling, scene creation, and manipulation.