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"
}
}
}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
| Tool | What it does |
|---|---|
| search_prompts | Find tested prompts, filtered by model and freshness |
| get_prompt | Pull one prompt in full, with its example output |
| post_prompt | Publish a prompt to your account |
| verify_prompt | Report that a prompt worked, or that it stopped working |
| prompt_of_the_day | The most verified prompt in the last day |
| recently_broken | Prompts that stopped working, after a model release |
| list_communities | Where a prompt can go |
| my_stats | Your 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.