Skip to main content

MCP server for Creative Market's Pointguard search platform — discover fonts, graphics, and creative assets through natural conversation.

Project description

Pointguard MCP Server

An MCP (Model Context Protocol) server that exposes Creative Market's Pointguard search platform to AI assistants. Discover fonts, graphics, templates, and creative assets through natural conversation.

Features

Tool Description
search_products Search by style, mood, subject, or keyword with natural language
get_product Get full product details from the Pointguard index — pricing, category, file types, availability
browse_category Explore products by classification using the full CM category taxonomy
browse_shop Browse a designer or studio's full catalog by shop ID
find_similar Find visually/stylistically similar products using embeddings
autocomplete Get search suggestions from partial input
suggested_searches Discover related searches and trending terms
browse_creative_market Search CM directly for rich display data — titles, prices, preview images, designer info
get_product_details Fetch full metadata for up to 50 product IDs — full image gallery, description, licenses

Example Queries

Once connected to an MCP-compatible client (Claude, Cursor, etc.), you can ask:

  • "Find me a condensed sans-serif for a sports brand logo."
  • "Show me retro display fonts for a vinyl record label."
  • "I need textures and grunge graphics for a concert poster."
  • "Find script fonts under $30 that work for wedding stationery."
  • "Show me font alternatives to Futura." (uses find_similar)
  • "What's trending in the Fonts category?"
  • "Show me everything by Set Sail Studios." (uses browse_shop)
  • "Browse sans-serif fonts." (uses browse_category with ID 81)

Installation

pip install pointguard-mcp

Or in development mode:

cd pointguard-mcp
pip install -e .

Configuration

Set environment variables before running:

Variable Default Description
POINTGUARD_BASE_URL http://localhost:5000 Pointguard API base URL
POINTGUARD_TIMEOUT 30 Request timeout in seconds
CM_API_USER (required) Creative Market API basic auth username
CM_API_PASS (required) Creative Market API basic auth password

Usage

Standalone (stdio)

pointguard-mcp

With Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "pointguard": {
      "command": "pointguard-mcp",
      "env": {
        "POINTGUARD_BASE_URL": "https://your-api-host.com",
        "CM_API_USER": "your-cm-api-user",
        "CM_API_PASS": "your-cm-api-pass"
      }
    }
  }
}

With Cursor

Add to .cursor/mcp.json in your project:

{
  "mcpServers": {
    "pointguard": {
      "command": "pointguard-mcp",
      "env": {
        "POINTGUARD_BASE_URL": "https://your-api-host.com",
        "CM_API_USER": "your-cm-api-user",
        "CM_API_PASS": "your-cm-api-pass"
      }
    }
  }
}

Category Reference

Top-level Categories

ID Category
1 Graphics
2 Templates
3 Fonts
4 Add-ons (Brushes & More)
6 Photos
7 3D
8 Stock Video / Footage
23 Illustrations
26 Icons
1800 Mockups

Font Subcategories

ID Subcategory
80 Serif
81 Sans Serif
82 Script
84 Symbols
85 Blackletter
86 Slab Serif
88 Handwritten

Template Subcategories

ID Subcategory
50 Logos
19 Posters
42 Flyers
46 Invitations
45 Business Cards
49 Presentations
52 Social Media
44 Stationery
41 Brochures
43 Resumes

Other Notable Subcategories

ID Subcategory
27 Textures (Graphics)
28 Patterns (Graphics)
24 Objects (Graphics)
131 Nature (Photos)
132 People (Photos)
127 Food & Drink (Photos)
21 Product Mockups
1801 Device Mockups
1805 Apparel Mockups
2601 Solid Icons
2602 Outline Icons
2603 Duotone Icons

See CATEGORY_MAP in server.py for the full list of 170+ category and subcategory mappings.

Development

# Install in development mode
pip install -e .

# Run directly
python -m pointguard_mcp.server

# Test with MCP inspector (browser UI)
npx @modelcontextprotocol/inspector pointguard-mcp

Architecture

┌─────────────────┐     stdio      ┌──────────────────┐     HTTP/JSON     ┌──────────────────────┐
│  AI Assistant   │◄──────────────►│  pointguard-mcp  │◄────────────────►│  Pointguard API      │
│  (Claude, etc.) │                │  (MCP Server)    │                   │  (Flask + ES)        │
└─────────────────┘                └──────────────────┘                   └──────────────────────┘
                                           │
                                           │ HTTPS
                                           ▼
                                   ┌──────────────────┐
                                   │  creativemarket  │
                                   │  .com (search +  │
                                   │  product detail) │
                                   └──────────────────┘

The MCP server has two data sources:

  1. Pointguard API (POINTGUARD_BASE_URL) — powers search_products, get_product, browse_category, browse_shop, find_similar, autocomplete, suggested_searches
  2. creativemarket.com — powers browse_creative_market (search with preview images) and get_product_details (full image gallery, descriptions, licenses via authenticated API)

Endpoints Used

Tool Endpoint
search_products POST /creative-market/products/search
get_product GET /creative-market/product/{id}
browse_category POST /creative-market/products/category
browse_shop POST /creative-market/products/shop
find_similar POST /creative-market/product/{id}/similar
autocomplete GET /creative-market/completions/suggest
suggested_searches POST /creative-market/suggested-searches
browse_creative_market GET https://creativemarket.com/search/{query}
get_product_details GET https://creativemarket.com/api/external/newsletter/product-details/{ids}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pointguard_mcp-0.2.0.tar.gz (12.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pointguard_mcp-0.2.0-py3-none-any.whl (13.1 kB view details)

Uploaded Python 3

File details

Details for the file pointguard_mcp-0.2.0.tar.gz.

File metadata

  • Download URL: pointguard_mcp-0.2.0.tar.gz
  • Upload date:
  • Size: 12.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pointguard_mcp-0.2.0.tar.gz
Algorithm Hash digest
SHA256 319698e53bc5636b638fe32ceaf7afd17436a83cb925f237c299104e7e8c7d43
MD5 70c492064513aa481c9307c521b91b66
BLAKE2b-256 2eb6f252003f421d7efe09a52494b8e0c96d9a25598583c284cfa9fc86e2afc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pointguard_mcp-0.2.0.tar.gz:

Publisher: publish.yml on creativemarket/pointguard-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pointguard_mcp-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: pointguard_mcp-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 13.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pointguard_mcp-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e09377cd476bb892e72b845e60591643b78de4025c754ebf41c4831c26a77e6f
MD5 c87e959ba6ae0b162da79961ea6292cc
BLAKE2b-256 83cb4983baeb85e2afd43ae3edc92dc2658cb746c9fc517aa82eeaf5052cbc8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pointguard_mcp-0.2.0-py3-none-any.whl:

Publisher: publish.yml on creativemarket/pointguard-mcp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page