Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Generate Tech Stack
G
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:29:19 AM

Generate Tech Stack

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Visual tech-stack inventory of any codebase: languages, frameworks, databases, AI SDKs, infra.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "generate-tech-stack": {
      "command": "npx",
      "args": [
        "-y",
        "generate-tech-stack"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

generate-tech-stack

Scan any project and generate a visual TECH_STACK.html page β€” light/dark theme, auto-adapting, zero config.

Works as a Claude Code skill, MCP server, or GitHub Copilot Extension.

Live demo β†’ β€” generated from fastapi/full-stack-fastapi-template, unmodified.

Running generate-tech-stack against fastapi/full-stack-fastapi-template, from pip install to the generated page

(real CLI output, unscripted β€” static screenshot if you'd rather not autoplay)


What it produces

Every generated page contains:

SectionDescription
Stat rowTotal tools Β· Categories Β· AI Backends Β· Data Stores
Architecture diagramLayered flow diagram (Consumer β†’ API β†’ AI/NLP β†’ Data/Obs/Frontend)
Bar chartHorizontal bars per category, colour-matched
Tool cardsOne card per category; each tool shows a dot, name, description, and badge
Badge legendExplains pip, dep, optional, core, deploy, ci, etc.
FooterProject name Β· tool count Β· generation date
Guided tourSpotlight walkthrough of every section, shown automatically the first time a report is opened; replay anytime with the ? button
Theme toggleSun/moon button next to the tour button switches between dark and light mode

Repository layout

Code
~/.claude/skills/generate-tech-stack/
β”œβ”€β”€ SKILL.md                  ← Claude Code skill definition
β”œβ”€β”€ INSTALL.md                ← detailed per-platform installation guide
β”œβ”€β”€ README.md                 ← this file
β”œβ”€β”€ scripts/
β”‚   └── analyze.py            ← core scanner + HTML renderer (no dependencies)
β”œβ”€β”€ mcp/
β”‚   β”œβ”€β”€ server.py             ← MCP stdio server (pip install mcp)
β”‚   └── requirements.txt
└── copilot/
    β”œβ”€β”€ index.js              ← GitHub Copilot Extension (Express)
    β”œβ”€β”€ package.json
    └── openai_function.json  ← OpenAI / Antigravity function definition

Usage

pip (CLI + MCP server)

Terminal
pip install generate-tech-stack-mcp

generate-tech-stack . TECH_STACK.html    # CLI: scan and write the report
generate-tech-stack-mcp                   # stdio MCP server

With pip installed, any MCP host config reduces to:

config.json
{
  "mcpServers": {
    "generate-tech-stack": { "command": "generate-tech-stack-mcp" }
  }
}

Claude Code

Code
/generate-tech-stack

Run it from any project directory. The skill calls scripts/analyze.py and opens the result in your browser.

MCP (Claude Desktop, VS Code, Cursor, Zed, Windsurf, Continue)

Terminal
pip install mcp

Add to your host's MCP config (replace the path with your actual home directory):

config.json
{
  "mcpServers": {
    "generate-tech-stack": {
      "command": "python3",
      "args": ["/home/<you>/.claude/skills/generate-tech-stack/mcp/server.py"]
    }
  }
}

Then ask: generate my tech stack or /generate-tech-stack.

MCP tools exposed:

  • generate_tech_stack β€” scans a project, writes TECH_STACK.html, opens in browser
  • list_tech_stack β€” returns a JSON summary, no file written

GitHub Copilot Extension

bash
cd copilot
npm install
npm start        # listens on port 3000
ngrok http 3000  # expose for GitHub to reach

Register a GitHub App with Copilot Extension enabled, set the Agent URL to https://your-url/agent, and install it on your account. Then in Copilot Chat:

Code
@generate-tech-stack /generate-tech-stack
@generate-tech-stack /generate-tech-stack /path/to/project

Command line (standalone)

bash
python3 ~/.claude/skills/generate-tech-stack/scripts/analyze.py /path/to/project
# output: /path/to/project/TECH_STACK.html

# custom output path:
python3 scripts/analyze.py . ~/Desktop/TECH_STACK.html

analyze.py has no third-party dependencies β€” just Python 3.8+.


What gets detected

Source fileDetected tools
requirements.txt / pyproject.tomlPython packages (web, DB, AI, testing, observability, security…)
package.jsonNode / npm packages (frameworks, frontend, DB drivers, tooling)
go.modGo language
Cargo.tomlRust language
pom.xml / build.gradleJava / Kotlin
GemfileRuby
composer.jsonPHP
**/*.py sourceOptional/dynamic SDKs via importlib.find_spec() patterns
docker-compose.yml / .envPostgreSQL, Redis, MongoDB, SQLite connection strings
DockerfileDocker
docker-compose.ymlDocker Compose
.github/workflows/GitHub Actions
.gitlab-ci.ymlGitLab CI
alembic.iniAlembic migrations
nginx.conf / CaddyfileReverse proxy
tsconfig.json / src/**/*.tsTypeScript

Detected categories

CategoryColourExamples
Language & RuntimeGreenPython, Go, Rust, TypeScript
Web / API FrameworkPurpleFastAPI, Express, Django, Next.js
Database / StorageGreenSQLAlchemy, Prisma, Redis, ChromaDB
AI SDKsBlueOpenAI, Anthropic, LangChain, GuardrailsAI, NVIDIA NeMo, Presidio
NLP / MLTealspaCy, Transformers, Sentence Transformers
ObservabilityTealPrometheus, OpenTelemetry, Sentry, Loguru
TestingYellowpytest, Jest, Cypress, Playwright
Security / AuthRosePyJWT, bcrypt, Authlib, Helmet
Infrastructure / DeployOrangeDocker, Kubernetes, Celery, Boto3
Frontend / DashboardGrayReact, Vue, Tailwind, Recharts
Messaging / CommsBlueKafka, RabbitMQ, Socket.io
Dev ToolsGrayESLint, Prettier, Vite, TypeScript

Design

Dark by default with a light-mode toggle (top-right corner, no persistence β€” resets to dark on reload). Fonts: IBM Plex Sans (body) + JetBrains Mono (code/badges), loaded from Google Fonts. Vanilla JS powers the guided tour and theme toggle only β€” everything else is plain HTML + CSS. Self-contained single file, opens in any browser offline.


See also

  • INSTALL.md β€” per-platform setup instructions
  • SKILL.md β€” Claude Code skill specification

Related MCP Servers

View all in Developer Tools View all alternatives
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • Shadcn Ui Mcp Server logoShadcn Ui Mcp Server

    MCP server that gives AI assistants seamless access to shadcn/ui v4 components, blocks, demos, and metadata.

    πŸ’» Developer Tools2 views
    Compare vs Shadcn Ui Mcp Server β†’
  • I
    I18n Agent

    AI-powered translation for 48 languages with context-aware quality

    πŸ’» Developer Tools1 views
    Compare vs I18n Agent β†’

Frequently Asked Questions about Generate Tech Stack

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "generate-tech-stack": { "command": "npx", "args": ["-y", "Generate Tech Stack"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewGenerate Tech Stack AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/generate-tech-stack?style=directory)](https://allmcps.com/mcp/generate-tech-stack)
HTML Embed
<a href="https://allmcps.com/mcp/generate-tech-stack"><img src="https://allmcps.com/api/badge/generate-tech-stack?style=directory" alt="Generate Tech Stack on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedMoxie Docs MCP logo

Moxie Docs MCP

MCP & Agent Skills for Automated Documentation, and codebase conventions + context

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Generate Tech Stack β†’Install in Claude DesktopInstall in CursorInstall in VS Code