- Home
- MCP servers
- Shopify Liquid
Shopify Liquid
- python
2
GitHub Stars
python
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"florinel-chis-shopify-liquid-mcp": {
"command": "shopify-liquid-mcp",
"args": []
}
}
}You have a fast, offline-capable MCP server focused on Shopify Liquid documentation. It gives instant access to 198 Liquid docs, including tags, filters, and objects, making theme development, debugging, and snippet reuse quicker and completely offline.
How to use
Use an MCP client to connect to your local Liquid MCP server and start querying documentation, listing available docs, and performing full-text searches. You can run the server locally and point your IDE or AI assistant to the local endpoint to get fast, offline Liquid references.
How to install
Prerequisites: you need Python and/or Docker to run the server locally. Follow one of these installation paths to start the server.
Using local installation with an editor
{
"mcpServers": {
"shopify-liquid": {
"type": "stdio",
"command": "shopify-liquid-mcp",
"args": []
}
}
}
Using Docker
Run the server with Docker if you prefer containerized execution. You can use the official image to start quickly.
docker pull shopify-liquid-mcp:latest
docker run -it --rm shopify-liquid-mcp:latest
Using Docker in a GUI editor configuration
If your editor supports configuring a Docker-based MCP server, you can reference the container in your editor’s MCP settings.
Connecting your editor or assistant
Point your editor or AI assistant to the local MCP server. The standard local command is the binary you install for Liquid MCP, or the Docker image you run. Use the same server name you configured in your editor settings.
Available tools
search_liquid_docs
Full-text search across all Shopify Liquid documentation.
get_liquid_tag
Get complete documentation for a specific Liquid tag.
get_liquid_filter
Get complete documentation for a specific Liquid filter.
get_liquid_object
Get complete documentation for a specific Liquid object.
list_liquid_tags
List all available Liquid tags organized by category.
list_liquid_filters
List all available Liquid filters organized by category.
list_liquid_objects
List all available Liquid objects organized by category.