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.
GoMyPrompt
MCP for prompt operations
MCP Setup
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.
Let an MCP-enabled client inspect boards, read rows and cells, update values, and execute prompt workflows without rebuilding your prompt system elsewhere.
Reuse saved prompts, prompt history, and prompt groups from GoMyPrompt directly inside your AI client instead of copying templates across tools.
Use column rules, validation runs, and analytics as part of the same AI-assisted workflow when you need outputs that are easier to trust.
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.
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.
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
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"
}
}
}
}