1. Conduid
  2. Developer Tools
  3. PromptHouse
MCP server · Developer Tools

PromptHouse

Personal prompt library with MCP integration for AI clients.

Unclaimed MIT last commit a year ago devtools
55Fair

Scored 2 days ago · breakdown

About PromptHouse

PromptHouse is an MCP server published by newtype-01 in the Developer Tools category: personal prompt library with MCP integration for AI clients. It has been installed 0 times through Conduid.

The repository has 52 stars and 12 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx prompthouse-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about PromptHouse

Powered by Claude · Grounded in docs

I know everything about PromptHouse. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v1.0.0PromptHouse MCP DXT Extension v1.0.0 - Official Icon + JSON-RPC Fixes · 28 Jun 2025🎉 PromptHouse MCP DXT Extension v1.0.0 🎨 What's New Official PromptHouse Icon** Professional Branding**: Now featuring the official PromptHouse app icon from the Desktop version Enhanced Visual Identity**: Improved recognition and…

README

Prompt House: Supercharge Your AI Workflow

Your Personal Prompt Library, Intelligently Connected to Your Favorite AI Tools.

Tired of juggling a messy collection of prompts across notes, files, and spreadsheets? Prompt House is a powerful prompt manager that not only helps you save, tag, and organize your prompts but makes them instantly accessible to your AI clients.

It leverages the MCP (Model Context Protocol), which allows your AI applications to programmatically find and use the perfect prompt from your library. This creates an effortless and seamless workflow, eliminating the need for constant copy-pasting.

Created by huangyihe

✨ Key Features

  • Prompt Management: Effortlessly save, tag, and manage your entire prompt library. Our clean interface allows you to find, view, and edit prompts in seconds. Use tags to instantly filter and locate the exact prompt you need.

  • Prompt Calling: Transform your workflow from manual to automatic. By setting up the MCP connection, you empower clients like Cursor, ChatWise, and Cherry Studio to intelligently fetch and execute prompts directly from your collection.

  • Prompt Recommendations: Explore a built-in collection of high-quality prompts for a variety of tasks, including Productivity and Image Generation. It's a great way to discover new techniques and expand your creative toolkit.

  • Privacy-First macOS Client: Enjoy the speed and security of a native macOS application. All your data is stored locally on your machine. No accounts, no sign-ups, no cloud sync. The client also features native support for major Model Providers and local inference with Ollama.

🔗 How to Connect

For the Web Version:

  • NPM Package
  • HTTP Bridge
  • DXT Extension

Web Version Setup

For the macOS App:

  • Manual Configuration: Set up a connection via HTTP or Stdio
  • Auto-Configuration: Enjoy one-click setup for Claude Desktop

macOS App Setup


PromptHouse MCP Server

Connect your PromptHouse prompts directly to Claude Desktop and other AI clients using the Model Context Protocol (MCP).

🚀 Quick Start

Option 1: NPX (Recommended)

The easiest way to get started:

npx prompthouse-mcp

Option 2: Install Globally

npm install -g prompthouse-mcp
prompthouse-mcp

Option 3: Run from GitHub

npx github:newtype-01/prompthouse-mcp

⚙️ Configuration

Claude Desktop Setup

Add this to your Claude Desktop configuration file:

{
  "mcpServers": {
    "prompt-house": {
      "command": "npx",
      "args": ["prompthouse-mcp"],
      "env": {
        "PROMPTHOUSE_ACCESS_LINK": "your-access-link-here"
      }
    }
  }
}

Getting Your Access Link

  1. Go to PromptHouse
  2. Sign in with Google
  3. Click "Set Up MCP" in the top right
  4. Copy your access link from the configuration

Configuration File Locations

macOS:

~/Library/Application Support/Claude/claude_desktop_config.json

Windows:

%APPDATA%\Claude\claude_desktop_config.json

🔧 Environment Variables

Variable Description Default Required
PROMPTHOUSE_ACCESS_LINK Your personal access link from PromptHouse -
PROMPTHOUSE_MODE Connection mode: web or local web
PROMPTHOUSE_DEBUG Enable debug logging false

📖 Available Tools

Once connected, you'll have access to these MCP tools:

get_prompt_list

List all your available prompts with titles and tags.

// Example usage in Claude Desktop:
// "Show me all my prompts"

get_prompt

Retrieve the complete content of a specific prompt by its ID.

// Example usage in Claude Desktop:
// "Get the content of prompt ID abc123"

🌐 Connection Modes

Web Mode (Default)

Connects to the online PromptHouse service at https://prompthouse.app.

PROMPTHOUSE_MODE=web npx prompthouse-mcp

Local Mode

Connects to a local PromptHouse server running on localhost:3001.

PROMPTHOUSE_MODE=local npx prompthouse-mcp

🛠️ Advanced Configuration

Custom Endpoint

You can specify a custom endpoint using:

PROMPTHOUSE_CUSTOM_URL=https://your-custom-domain.com/api/mcp-link npx prompthouse-mcp

Debug Mode

Enable detailed logging for troubleshooting:

PROMPTHOUSE_DEBUG=true npx prompthouse-mcp

Timeout Settings

Adjust request timeout (in milliseconds):

PROMPTHOUSE_TIMEOUT=15000 npx prompthouse-mcp

🔍 Troubleshooting

Common Issues

"Access link required" error:

  • Make sure you've set the PROMPTHOUSE_ACCESS_LINK environment variable
  • Verify your access link is correct and hasn't been regenerated

Connection timeout:

  • Check your internet connection
  • Try increasing the timeout: PROMPTHOUSE_TIMEOUT=30000
  • For local mode, ensure your local server is running

Claude Desktop not recognizing the server:

  • Restart Claude Desktop after configuration changes
  • Check that Node.js is installed and accessible
  • Verify the configuration file syntax is valid JSON

Debug Mode

Enable debug mode to see detailed logs:

{
  "mcpServers": {
    "prompt-house": {
      "command": "npx",
      "args": ["prompthouse-mcp"],
      "env": {
        "PROMPTHOUSE_ACCESS_LINK": "your-access-link-here",
        "PROMPTHOUSE_DEBUG": "true"
      }
    }
  }
}

Testing the Connection

You can test the server manually:

echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"1.0.0"}}}' | PROMPTHOUSE_ACCESS_LINK=your-link npx prompthouse-mcp

🔗 Alternative Connection Methods

HTTP Bridge (Legacy)

If you prefer the HTTP bridge method:

{
  "mcpServers": {
    "prompt-house": {
      "url": "https://prompthouse.app/api/mcp-link?accessLink=your-access-link-here",
      "transport": "http"
    }
  }
}

DXT Extension

For one-click installation, download the DXT extension from the releases page.

🛡️ Security

  • Your access link is unique and private - don't share it
  • The access link can be regenerated at any time from PromptHouse settings
  • All communication uses HTTPS encryption
  • No sensitive data is logged (unless debug mode is enabled)

📦 Supported Clients

  • ✅ Claude Desktop
  • ✅ Cursor (with MCP support)
  • ✅ Other MCP-compatible AI clients

🤝 Contributing

This project is open source. Feel free to:

  • Report issues on GitHub
  • Submit pull requests
  • Suggest new features

📄 License

MIT License - see LICENSE file for details.

🔗 Links

README mirrored from the source repository 2 days ago. The original is authoritative.

Questions

About PromptHouse

How do I install PromptHouse?

Run npx prompthouse-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is PromptHouse safe to use with an AI agent?

Its trust score is 55 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is PromptHouse still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.