MCP

Connect your assets to AI.

Markie exposes your local asset library via MCP, so Claude and other AI tools can search and retrieve your files.

What is MCP?

Model Context Protocol (MCP) is a standard for AI assistants to access external tools and data sources securely.

Markie's MCP server exposes your personal asset library to Claude and other AI tools. Search by query, tag, file type, or description — all from within your AI conversations.

Your files stay local. Your AI accesses them through Markie, which controls exactly what can be searched and retrieved.

Claude
MCP Server
Markie Library

Available Tools

Use these MCP tools to interact with your Markie library programmatically.

search_assets

Search your library by query string. Returns matching files with metadata.

query: string limit?: number type?: string

get_asset

Retrieve a specific asset by its ID. Returns file metadata and content.

asset_id: string

list_tags

List all tags in your library. Useful for filtering and organization.

(no parameters)

get_stats

Get statistics about your collection: total files, size, types, tags.

(no parameters)

Quick Start

// setup.js
// Install Markie MCP server
npx markie-mcp

// Or add to Claude Desktop config (~/.claude/config.json)
{
  "mcpServers": {
    "markie": {
      "command": "npx",
      "args": ["markie-mcp"]
    }
  }
}

Example usage.

Search by description

Find that blue gradient poster I saved last week

gradient-poster-blue.png — PNG · 2.4 MB · saved 5 days ago
Filter by type

Show me the most recent PDFs I saved

brand-guidelines.pdf, wireframes-v3.pdf, mood-board.pdf
Search by tag

Find all assets tagged "logo"

Found 12 assets matching tag: logo
Search by source

What did I save from dribbble.com?

14 assets from dribbble.com — 12 images, 2 videos
Browse by color

Show me assets with warm color palettes

Filtered by dominant colors: coral, amber, terracotta
Get stats

How many assets are in my library?

847 assets — 623 images, 184 PDFs, 40 videos · 12.4 GB
Retrieve a file

Get me the brand guidelines PDF from last week

Retrieved brand-guidelines-v2.pdf — 8.7 MB
Explore tags

What tags do I use most often?

inspiration (142), ui (98), typography (76), branding (61)

Ready to connect?