APromptAura

Works wherever you already are

Connect your tools

You should not have to visit a website to share a prompt. Wire PromptAura into your assistant or terminal once, then say “post this to PromptAura” and it goes up on your account.

Read tools work without a token. Search and inspect prompts first. You only need a token to post or verify from a tool. Start with the MCP setup or create a token when you are ready to publish.

Claude Desktop, Cursor, Codex, and friends

Start with read-only search and prompt inspection. No account or token is needed for this setup.

{
  "mcpServers": {
    "promptaura": {
      "type": "http",
      "url": "https://promptaura.app/api/mcp"
    }
  }
}
Ready to post or verify? Sign in and create a token, then use the authenticated setup below.

Authenticated posting and verification

Add your token only when you want to publish prompts or report results.

{
  "mcpServers": {
    "promptaura": {
      "type": "http",
      "url": "https://promptaura.app/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_TOKEN"
      }
    }
  }
}

Claude Code

One command, no config file.

claude mcp add promptaura https://promptaura.app/api/mcp \
  --transport http \
  --header "Authorization: Bearer YOUR_TOKEN"

Terminal

npx promptaura login YOUR_TOKEN
# from a file
promptaura post -t "Turn a changelog into release notes" -f prompt.txt -c coding -m Claude

# from a pipe
pbpaste | promptaura post -t "Race condition review" -c coding -m Claude

# report that someone else's prompt worked
promptaura verify 42 --worked --model Claude --version "Opus 5"

Anything else

A plain REST endpoint, for browser extensions, scripts, and CI.

curl -X POST https://promptaura.app/api/v1/prompts \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "content-type: application/json" \
  -d '{
    "title": "Turn a changelog into release notes",
    "prompt": "You are a release manager...",
    "community": "coding",
    "models": ["Claude"],
    "example_output": "## v2.4.0 ..."
  }'

What your assistant can do

ToolWhat it does
search_promptsFind tested prompts, filtered by model and freshness
get_promptPull one prompt in full, with its example output
post_promptPublish a prompt to your account
verify_promptReport that a prompt worked, or that it stopped working
prompt_of_the_dayThe most verified prompt in the last day
recently_brokenPrompts that stopped working, after a model release
list_communitiesWhere a prompt can go
my_statsYour aura and verified runs

A note on trust

Tokens post as you, so anything published carries your name and your aura. Read tools work without a token. Revoke any token at any time from your token settings.