GoMyPrompt

GoMyPrompt

MCP for prompt operations

MCP Setup

Local stdio serverServer name: gomyprompt

Connect GoMyPrompt to your AI client with MCP and keep the same boards, prompts, groups, and validations in one workflow.

The GoMyPrompt MCP server lets an MCP-enabled AI client work directly with your prompt assets instead of recreating them in another tool. This page gives your users a clean handoff: one card, one copy button, and one ready-to-paste AI prompt that helps them finish the setup.

Boards and cells

Let an MCP-enabled client inspect boards, read rows and cells, update values, and execute prompt workflows without rebuilding your prompt system elsewhere.

Prompt Vault and groups

Reuse saved prompts, prompt history, and prompt groups from GoMyPrompt directly inside your AI client instead of copying templates across tools.

Validation and analytics

Use column rules, validation runs, and analytics as part of the same AI-assisted workflow when you need outputs that are easier to trust.

01

Build the MCP server locally

Use the compiled GoMyPrompt MCP server from your backend repo. The client launches the server locally, so you need a real absolute path to the compiled entry file.

02

Point your AI client at the stdio server

This is not a remote URL-only connection. Your AI client needs a local MCP config that runs node against the server entry file and passes your GoMyPrompt credentials as environment variables.

03

Restart the client and verify the tools

After saving the config, restart the MCP-enabled client and confirm that the gomyprompt server loads with board, prompt, vault, execution, and validation capabilities.

Known paths

Windows Claude Desktop config: %APPDATA%\Claude\claude_desktop_config.json

macOS Claude Desktop config: ~/Library/Application Support/Claude/claude_desktop_config.json

Production API base URL: https://www.gomyprompt.com

Local backend API base URL: http://localhost:8080

Expected compiled server entry: <absolute-path-to>/prompt-mcp-server/dist/index.js

Setup Card

Copy one prompt and let your AI assistant walk through the setup.

This copies a ready-to-paste prompt for ChatGPT, Claude, or any other AI assistant you want to use as your setup guide. The copied prompt already includes the real server name, transport type, env vars, and a config template.

Config Template

{
  "mcpServers": {
    "gomyprompt": {
      "command": "node",
      "args": ["<absolute-path-to>/prompt-mcp-server/dist/index.js"],
      "env": {
        "PROMPT_API_BASE_URL": "https://www.gomyprompt.com",
        "PROMPT_USERNAME": "your_username",
        "PROMPT_PASSWORD": "your_password"
      }
    }
  }
}
The current GoMyPrompt MCP server is a local stdio server, so the user needs a local path to the compiled `dist/index.js` file. The copied prompt tells the AI assistant to ask for that path and generate the final config.