Tripleshot MCP Server
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., "@Tripleshot MCP Serversearch prompts for 'next.js'"
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.
mcp-tripleshot-http
A clean, Streamable HTTP MCP server (no stdio) that fronts api.tripleshot.ai so Claude/Cursor can search prompts and "prompt itself." Built with the MCP SDK’s StreamableHTTPServerTransport, handling both SSE (GET) and JSON-RPC (POST).
What you get (tools)
list_communities(): Return communities from
/api/public/communities.search_prompts(q, community?, limit?, offset?): Search
/api/public/prompts/search.get_prompt(id): Get prompt by ID via
/api/public/prompts/:id.trending_prompts(community?, limit?): Trending via
/api/public/prompts/trending.featured_prompts(limit?): Featured via
/api/public/prompts/featured.render_prompt(id, variables={}): Fetches a prompt and fills
{{placeholders}}in its body.
Project setup
Requirements: Node 18+.
git clone <this repo>
cd mcp-tripleshot-http
npm cipackage.json scripts:
{
"scripts": {
"dev": "tsx src/server.ts",
"build": "tsc -p .",
"start": "node --enable-source-maps dist/server.js"
}
}Optional .env (create at repo root):
TRIPLESHOT_BASE=https://api.tripleshot.ai
HTTP_TIMEOUT_MS=15000
PORT=8787
BIND=127.0.0.1
# If you publish this, add a shared secret
MCP_TOKEN=replace-meServer (Streamable HTTP)
The HTTP endpoint is exposed at /mcp using StreamableHTTPServerTransport.
GET
/mcp: Server-Sent Events stream (keepalive)POST
/mcp: JSON-RPC 2.0 requests
There’s also a health check at GET / that returns { ok: true, mcp: "/mcp" }.
Build & run
npm run dev
# or
npm run build && npm run startSmoke tests (local)
curl http://127.0.0.1:8787/
curl -N -H "Accept:text/event-stream" http://127.0.0.1:8787/mcpIf you set MCP_TOKEN, include the header:
curl -H "Authorization: Bearer replace-me" http://127.0.0.1:8787/Connect clients
Cursor (local)
First start the server:
npm run devThen add to ~/.cursor/mcp.json:
{
"mcpServers": {
"tripleshot-http": {
"type": "streamable-http",
"url": "http://127.0.0.1:8787/mcp"
}
}
}With token:
{
"mcpServers": {
"tripleshot": {
"type": "streamable-http",
"url": "http://127.0.0.1:8787/mcp",
"headers": { "Authorization": "Bearer replace-me" }
}
}
}Claude Desktop
Claude Desktop requires using mcp-remote as a bridge to connect to HTTP-based MCP servers.
Add to your Claude Desktop configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Basic configuration:
{
"mcpServers": {
"tripleshot-http": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"http://127.0.0.1:8787/mcp"
]
}
}
}With authentication token:
{
"mcpServers": {
"tripleshot-http": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"http://127.0.0.1:8787/mcp",
"--header",
"Authorization: Bearer ${MCP_TOKEN}"
],
"env": {
"MCP_TOKEN": "your-token-here"
}
}
}
}After updating the configuration, restart Claude Desktop to apply changes. The tools will appear automatically in the UI.
Example model flow
Discover:
{ "tool": "search_prompts", "args": { "q": "next.js auth", "limit": 5 } }Inspect:
{ "tool": "get_prompt", "args": { "id": 82 } }Render / prompt itself:
{
"tool": "render_prompt",
"args": { "id": 82, "variables": { "projectName": "Acme", "provider": "Clerk" } }
}Use the rendered text as the next system/assistant message.
Deploy notes
Any Node host works (Vercel/Render/Fly/Cloud Run). Ensure keep‑alive for SSE
GET /mcp.If public, set
MCP_TOKENand restrict inbound origins/IPs at the proxy.If you later add write ops, create a separate admin MCP server.
License
MIT
This server cannot be installed
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 Servers
- Alicense-qualityCmaintenanceMCP server for managing and serving dynamic prompt templates using elegant and powerful text template engine. Create reusable, logic-driven prompts with variables, partials, and conditionals that can be served to any compatible MCP client like Claude Code, Claude Desktop, Gemini CLI, etc.Last updated18MIT
- Flicense-qualityDmaintenanceEnables users to search, browse, and retrieve AI prompts from the Tripleshot public API. Provides access to community prompts, trending content, and template rendering capabilities through a durable MCP server interface.Last updated
- AlicenseBqualityAmaintenanceMCP server that exposes any LynxPrompt instance to LLMs, enabling browsing, searching, and managing AI configuration blueprints and prompt hierarchies.Last updated6402GPL 3.0
- Alicense-qualityBmaintenanceMCP server for PromptHub. Enables publishing, fetching, listing, updating, and searching prompt repositories from Claude Code or Codex.Last updated11MIT
Related MCP Connectors
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Remote ChromaDB vector database MCP server with streamable HTTP transport
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/leopold16/tripleshot-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server