Haulistic MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Haulistic MCP ServerShow me the first 10 products in the catalog"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Haulistic MCP Server
Standalone proof-of-concept MCP server exposing read-only product resources for
one Haulistic organization. The organization is selected at startup with
MCP_ORGANIZATION_SLUG; clients cannot select or change it.
This POC intentionally has no user authentication. Anyone who can reach the MCP endpoint can read the public catalog for the configured organization.
Requirements
Node.js 20+
PostgreSQL connectivity to the Haulistic database
A PostgreSQL login with read-only access
Related MCP server: zee5-catalog-mcp
Setup
cp .env.example .env
npm install
npm run devThe server fails to start if MCP_ORGANIZATION_SLUG is missing, deleted,
deactivated, or does not exist.
Endpoints
POST /mcp— stateless MCP Streamable HTTP endpointGET /health— database and configured-organization readiness checkOther methods on
/mcpreturn405 Method Not Allowed
The MCP server exposes these resource templates:
haulistic://products/catalog/{offset}/{limit}haulistic://products/by-name/{productName}haulistic://products/by-route/{productRoute}
Only products that are active, listed, and not deleted are returned. Catalog limits must be between 1 and 100. Name searches are case-insensitive partial matches and return at most 20 products.
The MCP server also exposes these reusable prompts:
browse-product-catalog— browse and summarize a catalog pagefind-products-by-name— find and present products matching a namecompare-products— compare two products using their storefront routes
Read-only database role
Use a separate database role for this service. The exact administration flow depends on the deployment platform, but the privileges should be equivalent to:
CREATE ROLE mcp_reader LOGIN PASSWORD 'replace-with-a-secret';
GRANT CONNECT ON DATABASE haulistic TO mcp_reader;
GRANT USAGE ON SCHEMA public TO mcp_reader;
GRANT SELECT ON TABLE
"Organization",
"Products",
"ProductRoutes",
"ProductOption",
"ProductOptionValue"
TO mcp_reader;
ALTER ROLE mcp_reader SET default_transaction_read_only = on;The application also requests default_transaction_read_only=on for every
database connection and applies a configurable statement timeout. Database
permissions remain the primary security boundary.
Build and run
npm run build
npm startOr build the container:
docker build -t haulistic-mcp-server .
docker run --rm -p 8080:8080 --env-file .env haulistic-mcp-serverDeploy the service behind HTTPS, then configure the Claude custom connector with
the externally reachable endpoint, for example:
https://mcp-poc.example.com/mcp. A PUBLIC_MCP_URL environment variable is
not needed for this unauthenticated, stateless POC.
POC boundaries
No OAuth or other client authentication
One organization per deployment
Product resources only; no mutating tools
Public product DTOs intentionally omit creator data, internal notes, draft and deleted products, integration configuration, and internal timestamps
This server cannot be deployed
Maintenance
Related MCP Connectors
Search multi-merchant supply, checkout, and track orders via MCP.
Public read-only MCP for products, frameworks, guides, methodology, and blog metadata.
Remote MCP server for product discovery catalog and retrieving product details.
Read-only tools over an independently vetted catalog of non-toxic home and baby products.
Related MCP Servers
- FlicenseAqualityDmaintenanceEnables interaction with Adobe Commerce Catalog Services to retrieve product variants, price overrides, category permissions, and environment details via MCP.7-
- FlicenseNot gradedqualityCmaintenanceProvides synthetic catalog search, metadata retrieval, similar titles, trending, and new releases via MCP tools.-
- AlicenseNot gradedqualityBmaintenanceEnables natural-language setup and management of a governed digital product catalog, including schema, products, and rules, with dry-run previews, audit logging, and two-phase confirmations for destructive actions.MIT
- FlicenseAqualityCmaintenanceEnables AI agents to query tenants, browse catalogue items with pricing, pull recent orders, and add products through the MCP tool-calling interface.4-