mcp-prompts

(โ˜… 117)

Model Context Protocol server for managing, storing, and providing prompts and prompt templates for LLM interactions.

  • .directory
  • .dockerignore
  • .env.example
  • .eslintignore
  • .gitignore
  • .npmrc
  • .npmrc.github
  • .prettierignore
  • .prettierrc
  • .swcrc
  • .windsurfrules
  • BUGFIXES-VERIFICATION.md
  • CLAUDE.md
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • COST_OPTIMIZATION.md
  • create-alarms.sh
  • create-dashboard.sh
  • CRITICAL_BUGS.md
  • DEPLOYMENT_GUIDE.md
  • dev-intelligence-orchestrator-v2.skill
  • dev-intelligence-orchestrator.skill
  • docker-compose.aws.yml
  • docker-compose.file.yml
  • docker-compose.mcp.yml
  • docker-compose.memory.yml
  • docker-compose.postgres.yml
  • docker-compose.yml
  • DOCKER_AWS_TEST_REPORT.md
  • Dockerfile
  • Dockerfile.file
  • Dockerfile.mcp
  • Dockerfile.production
  • Dockerfile.simple
  • Dockerfile.with-data
  • E2E_TEST_REPORT.md
  • eslint.config.js
  • glama.json
  • INTEGRATION.md
  • LEARNING_LOOP_TEST_REPORT.md
  • mcp-inspector-config.json
  • mcp.code-workspace
  • MCP_CONFIGURATION_GUIDE.md
  • package.json
  • PHASE1_DEMO-SKILLS.md
  • pnpm-lock.yaml
  • PRODUCTION_SECURITY_GUIDE.md
  • README.md
  • RELEASE_NOTES.md
  • RELEASE_SUMMARY_v3.12.3.md
  • RELEASE_SUMMARY_v3.14.0.md
  • RUNTIME-TEST-RESULTS.md
  • SECURITY.md
  • SPARETOOLS_MCP_INTEGRATION.md
  • test_learning_loop.sh
  • TODO.md
  • tsconfig.base.json
  • tsconfig.json
  • tsconfig.package.json
  • vitest.config.ts

# Installation Guide

1. Get the code
git clone https://github.com/sparesparrow/mcp-prompts

Downloads the entire project code from GitHub to your computer.

cd mcp-prompts

Moves into the project folder you just downloaded.

2. Docker

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker compose -f docker-compose.aws.yml up -d --build

Runs the command against the services defined in the compose file.

โœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

3. Node.js

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Node.js Node.js must be installed to use npm. The LTS version is recommended.
pnpm install

Downloads and installs the libraries listed in package.json.

pnpm build

Type this command into your terminal and run it.

pnpm start

Starts the development/run server.

pnpm install # Install dependencies

Downloads and installs the libraries listed in package.json.

pnpm build # Build TypeScript

Type this command into your terminal and run it.

โœ… After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.

Pulled directly from this repo's README.

// repository documentation