PromptBin
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PromptBinlist my saved prompts"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
PromptBin - MCP Server Example
The easiest way to run a Model Context Protocol (MCP) server with full prompt management.
Setup
1. Install and Configure
# Install PromptBin
pip install promptbin
# Install Dev Tunnels CLI (optional, for public sharing)
promptbin-install-tunnel
# Authenticate with Dev Tunnels (optional, one-time setup)
devtunnel user login -g
# Verify setup
promptbin-setup2. Add to Your AI Client
Claude Desktop - Add to Settings β Developer β Edit Config:
{
"mcpServers": {
"promptbin": {
"type": "stdio",
"command": "uvx",
"args": ["promptbin"]
}
}
}3. Start Using
That's it! PromptBin is now running:
Web UI:
http://localhost:5001- Manage and create promptsMCP Server: Ready for AI tool connections
Related MCP server: RISEN Prompt Engineering MCP Tool
Key Features
π Easy setup: One command to get started
π MCP integration: Full Model Context Protocol support
π Web interface: Auto-launching prompt management UI
π Secure sharing: Share prompts via Dev Tunnels with rate limiting
π Local-first: Your data stays private, stored locally
βοΈ Production-ready: Comprehensive logging and error handling
Usage Options
# Default: Run both MCP server and web interface
promptbin
# Run only MCP server (for AI tools)
promptbin --mcp
# Run only web interface (standalone)
promptbin --web
# Custom port and options
promptbin --port 8080 --data-dir ~/my-promptsDevelopment Mode
For development or customization:
git clone https://github.com/ianphil/promptbin
cd promptbin
uv sync
uv run promptbinWhat You Get
β Complete MCP server - Full Model Context Protocol implementation
β Auto-launching web UI - Prompt management interface at localhost:5000
β AI tool integration - Works with Claude Desktop, ChatGPT Desktop
β Secure sharing - Share prompts publicly via Dev Tunnels
β File-based storage - No database required, organized by category
β Cross-platform - Windows, macOS, Linux support
β Production-ready - Rate limiting, logging, graceful shutdown
Advanced Features
Secure Public Sharing (Optional)
PromptBin includes Microsoft Dev Tunnels integration for sharing prompts publicly:
# Install Dev Tunnels CLI
uv run promptbin-install-tunnel
# Authenticate (one-time setup)
devtunnel user login -g
# Start PromptBin, then click "Start Tunnel" in the footerNow your shared prompts get public URLs that work from anywhere. Includes automatic rate limiting and security protections.
For detailed setup instructions, see TUNNELS.md.
System Validation
# Check if your system is ready
uv run promptbin-setupAdd MCP Server to ChatGPT & Claude (Desktop)
Prereq: Install PromptBin first (pip install promptbin). The apps will launch the MCP server themselves.
ChatGPT Desktop (Mac/Windows):
Open Settings β Developer β Model Context Protocol.
Click "Add Server".
Name: PromptBin
Command:
uvxArgs:
promptbin
Claude Desktop (Mac/Windows):
Open Settings β Developer β Edit Config
"PromptBin": {
"command": "uvx",
"args": ["promptbin"]
}Notes:
After adding, you can list/search prompts via the PromptBin MCP tools. The MCP server also starts the local web UI on
http://127.0.0.1:<port>.If
uvxis not available, ensure you haveuvinstalled and usepip install promptbininstead.
Available Tools
1 toolsearch_promptsB
Search prompts by content, title, tags, or description
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | ||
| category | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only says what is searched, not how results are matched, whether search is case-insensitive, how results are ordered, or that the operation is non-destructive. 'Search' weakly implies a read operation, but concrete behavioral traits are missing.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single focused sentence with an active verb and no filler. Every word contributes to meaning, and the core searchable scope is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool with an output schema, the description covers the core objective but omits the optional category filter and limit behavior. It is minimally viable, and the self-explanatory schema partially compensates, but the absence of usage/behavioral context leaves moderate gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for parameter meaning. It clarifies that query searches across content, title, tags, or description, but says nothing about the limit or category parameters, leaving their semantics to be inferred from their names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Search') and resource ('prompts'), and enumerates the fields being searched: content, title, tags, or description. It clearly identifies the tool's purpose, even without sibling tools to differentiate against.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use for finding prompts by text or metadata, but provides no explicit guidance on when to use this tool versus alternatives. No sibling tools are listed, so there is no direct comparison, but the usage context remains only implied rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v0.5.1- First observed
search_prompts
TDQS
With only one tool, there is no possibility of confusion or overlap. The single tool's purpose is clearly distinct by default.
The sole tool uses a clear verb_noun pattern: search_prompts. This is consistent, predictable, and matches its function.
A single search-only tool feels far too thin for a server named PromptBin, which implies a prompt storage and management domain. Even a minimal prompt management server would need at least creation and listing capabilities.
The server exposes only search, with no way to add, update, delete, or retrieve prompts directly. This is severely incomplete for the apparent prompt-management scope and would cause agent failures for any non-search workflow.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Self-hosted AI prompt library: prompts, collections, tags, teams, chains. 29 MCP tools for agents.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yoβ¦
- PromptOTOAuthcom.promptot
Manage, version, and publish LLM prompts with blocks, variables, and evaluations.
Share one project context across ChatGPT, Claude, Telegram and any MCP client.
Related MCP Servers
- AlicenseAqualityDmaintenanceA Model Context Protocol server for managing prompt templates as markdown files with YAML frontmatter, allowing users and LLMs to easily add, retrieve, and manage prompts.52116MIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that helps users create, validate, manage, and optimize prompts using the RISEN framework (Role, Instructions, Steps, Expectations, Narrowing).1MIT
- AlicenseNot gradedqualityCmaintenanceA lightweight, file-based server for managing and serving personal prompt templates with variable substitution support via the Model Context Protocol. It allows users to store, update, and organize prompts in a local directory through integrated MCP tools and CLI assistants.207MIT
- AlicenseNot gradedqualityCmaintenanceEnables users to organize, search, and manage a shared library of prompts across AI tools via the Model Context Protocol. It supports hierarchical folder organization, tagging, and template variable substitution for dynamic prompt generation.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ianphil/promptbin'
If you have feedback or need assistance with the MCP directory API, please join our Discord server