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
- Go to promptmark.ai and click Sign In
- Authenticate with your Civic Auth account
- You’ll land on your Dashboard — your personal prompt workspace
Your First Prompt
- Click New Prompt
- Give your prompt a title and write the prompt content
- Add tags to help organize (e.g.,
writing,code-review) - 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
- Prompts & Templates — Learn about prompt types, visibility, and publishing
- Collections — Organize prompts into collections
- Testing — Test prompts with AI models
- API Reference — Integrate via MCP or REST