Connects to Prompeteer's hosted service to generate optimized prompts for 140+ AI platforms including ChatGPT, Claude, Midjourney, and Stable Diffusion. Exposes five tools: generate_prompt creates platform-specific prompts, score_prompt analyzes quality across 16 dimensions like linguistic quality and information density, and three PromptDrive operations let you save, list, and retrieve prompts from your personal library. Uses OAuth 2.1 authentication and runs over SSE or streamable HTTP rather than stdio. You'd reach for this when building agents or workflows that need to dynamically create high quality prompts for different platforms, or when you want programmatic access to your prompt library without switching contexts.
Public tool metadata for what this MCP can expose to an agent.
generate_promptGenerate an optimized AI prompt for any of 140+ platforms using THE SEED knowledge base. Supports text, image, video, audio, and code generation platforms.3 paramsGenerate an optimized AI prompt for any of 140+ platforms using THE SEED knowledge base. Supports text, image, video, audio, and code generation platforms.
modelIdstringplatformIdstringpromptIdeastringlist_promptsList prompts from your PromptDrive vault. Returns saved prompts with titles, platforms, and creation dates.2 paramsList prompts from your PromptDrive vault. Returns saved prompts with titles, platforms, and creation dates.
limitnumbersearchstringget_promptGet a specific prompt from your PromptDrive vault by its unique ID. Returns full content, metadata, and quality score.1 paramsGet a specific prompt from your PromptDrive vault by its unique ID. Returns full content, metadata, and quality score.
promptIdstringscore_promptGet a PromptIQ quality score for a prompt. Evaluates across 16 dimensions including clarity, specificity, context, and effectiveness.2 paramsGet a PromptIQ quality score for a prompt. Evaluates across 16 dimensions including clarity, specificity, context, and effectiveness.
promptstringplatformIdstringsave_to_promptdriveSave a prompt directly to your PromptDrive vault for later access. Supports titles, categories, tags, and platform targeting.6 paramsSave a prompt directly to your PromptDrive vault for later access. Supports titles, categories, tags, and platform targeting.
tagsarraytitlestringcontentstringcategorystringplatformIdstringdescriptionstringEnterprise-grade MCP server for AI prompt engineering. Generate expert-level prompts for 140+ AI platforms, score prompt quality across 16 dimensions, and manage your prompts in PromptDrive.
| Tool | Description | Type |
|---|---|---|
generate_prompt | Generate an optimized AI prompt for any of 140+ platforms | Write |
list_prompts | Browse your PromptDrive library with search and filtering | Read |
get_prompt | Retrieve a specific saved prompt by ID | Read |
score_prompt | Analyze prompt quality across 16 dimensions | Read |
save_to_promptdrive | Save a prompt to your PromptDrive library | Write |
Add to your claude_desktop_config.json (Settings > Developer > Edit Config):
{
"mcpServers": {
"prompeteer": {
"url": "https://prompeteer.ai/mcp/sse",
"transport": "sse"
}
}
}
https://prompeteer.ai/mcphttps://prompeteer.ai/mcpAdd to .cursor/mcp.json:
{
"servers": {
"prompeteer": {
"type": "sse",
"url": "https://prompeteer.ai/mcp/sse"
}
}
}
Add to .vscode/mcp.json:
{
"servers": {
"prompeteer": {
"type": "sse",
"url": "https://prompeteer.ai/mcp/sse"
}
}
}
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"prompeteer": {
"serverUrl": "https://prompeteer.ai/mcp/sse",
"transport": "sse"
}
}
}
Use these connection details in your client's MCP settings:
https://prompeteer.ai/mcp/ssehttps://prompeteer.ai/mcp| Property | Value |
|---|---|
| Endpoint (SSE) | https://prompeteer.ai/mcp/sse |
| Endpoint (Streamable HTTP) | https://prompeteer.ai/mcp |
| Authentication | OAuth 2.1 with PKCE |
| Authorization URL | https://prompeteer.ai/oauth/authorize |
| Token URL | https://prompeteer.ai/oauth/token |
| Discovery | https://prompeteer.ai/mcp/.well-known/oauth-authorization-server |
| Scopes | mcp:read, mcp:write, mcp:generate |
| Rate Limit | 120 requests/minute |
| Session Limit | 20 per user |
See prompeteer.ai/pricing for current plans and pricing.
Works with any MCP-compatible client including:
MIT — This repository contains connection configuration and documentation only. The Prompeteer platform is proprietary.
miapre/html-to-figma-design-system
ie3jp/illustrator-mcp-server
coding-solo/godot-mcp
ivanmurzak/unity-mcp
yctimlin/mcp_excalidraw
figma/mcp-server-guide