Documentation

Getting Started

Get up and running with Promptmark in minutes. This guide covers creating your first prompt, organizing your library, and connecting AI agents via MCP.

Sign In

  1. Go to promptmark.ai and click Sign In
  2. Authenticate with your Civic Auth account
  3. You’ll land on your Dashboard — your personal prompt workspace

Your First Prompt

  1. Click New Prompt
  2. Give your prompt a title and write the prompt content
  3. Add tags to help organize (e.g., writing, code-review)
  4. Click Save

Your prompt is now stored in your personal database — isolated from all other users.

Template Variables

Make prompts reusable with template variables:

Review this {{language}} code for {{focus:enum:bugs,performance,security}}:

{{code:text}}

Variables use {{name}} syntax with optional type annotations. See Template Variables for the complete specification.

Connect via MCP

Promptmark’s MCP server lets AI agents manage your prompt library. Add Promptmark to any MCP-compatible client (Claude Desktop, Cursor, Warp, Claude Code).

Quick MCP Setup (Claude Desktop)

Add to your Claude Desktop config (claude_desktop_config.json):

{
  "mcpServers": {
    "promptmark": {
      "url": "https://promptmark.ai/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_JWT_TOKEN"
      }
    }
  }
}

Get your JWT token from Settings > API Keys in the Promptmark web app. See MCP Setup for client-specific configuration guides.

Next Steps