startup-gtm-skill
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., "@startup-gtm-skillWhich channels work best for a seed-stage B2B SaaS startup in India?"
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.
Startup Channel Atlas ๐ฎ๐ณ
How 350 of India's top startups (2010โ2025) actually acquired their users โ coded by marketing channel and growth stage, and queryable by an LLM.
Most "growth advice" is anecdote. This is a structured, evidence-derived dataset built to answer one question:
Which marketing channels are best โ for a given industry, audience, era, scale/stage, product type, and budget?
Each of the 350 companies is coded for the channels it used at three stages (0โ1, 1โ10, scale), what worked, what failed, and situational variables (sector, model, era, trust burden, virality, CAC ceiling, category creation-vs-capture). It deliberately includes ~80 acquired / distressed / shut-down companies so you can learn from failure, not just survivorship.
Headline finding: channels are stage-locked more than sector-locked. TV was the entry channel for ~0 of 350 companies; it โ like IPL and celebrity โ is a scale-stage play. 0โ1 is won on earned media, partnerships, SEO/content, product-led loops and community.
Quickstart โ pick your lane
๐ง Option A โ Ask any LLM (ChatGPT, Claude, Gemini)
The fastest path. Point your model at this repo and let SKILL.md be its brain.
Open your AI chat.
Paste the link to this repo (or paste the contents of
SKILL.md).Say:
Readโ the model adopts the channel-selection rules.Ask, e.g. "I'm a seed-stage D2C skincare brand for tier-2 women in 2024, ~โน50L/month. Which channels first, and who proves it?"
SKILL.md explicitly tells the model not to dump the whole CSV into context โ it
reasons over the rules and pulls only the rows it needs, so answers stay cheap and grounded.
โก Option B โ Give it a real brain (MCP server, for Claude Desktop / Cursor / Claude Code)
Runs a local server that exposes the dataset as query tools. No hosting, no token bloat โ
the model calls find_channels(...) and gets back a small, ranked, evidence-backed result.
Run with uv (recommended):
uvx --from git+https://github.com/lan-club-live/startup-gtm-skill startup-gtm-skill-mcpAdd to Claude Desktop (claude_desktop_config.json โ
Settings โธ Developer โธ Edit Config):
{
"mcpServers": {
"startup-gtm-skill": {
"command": "uvx",
"args": ["--from", "git+https://github.com/lan-club-live/startup-gtm-skill", "startup-gtm-skill-mcp"]
}
}
}Or from a clone:
git clone https://github.com/lan-club-live/startup-gtm-skill && cd startup-gtm-skill
uv run startup-gtm-skill-mcp # or: pip install -e . && startup-gtm-skill-mcpThen just ask Claude/Cursor a channel question โ it will call the tools automatically.
Tools exposed: find_channels, get_company, search_evidence, channel_lens,
list_filters, dataset_summary.
๐ Option C โ Just the data (Excel / Pandas / your own build)
import pandas as pd
df = pd.read_csv("data/startups.csv")
d2c = df[df["Sector"].str.contains("d2c", case=False, na=False)]
print(d2c[["Company", "0โ1 Channels", "Scale Channels", "What Worked Most"]])Or open data/startups.csv in Excel/Sheets and pivot away.
Related MCP server: Meta Ads MCP Server
What's in the box
startup-gtm-skill/
โโโ data/
โ โโโ startups.csv # 350 companies ร channels-by-stage + variables + what worked/failed
โ โโโ channel_matrix.csv # company ร 24 canonical channels (E=0โ1, G=1โ10, S=scale)
โ โโโ economics.csv # 257 sourced CAC / ROAS / ad-spend datapoints (nothing estimated)
โโโ SKILL.md # the lightweight "brain": rules + decision trees + token discipline
โโโ src/startup_gtm_skill/
โ โโโ query.py # pure, dependency-free query logic (importable, testable)
โ โโโ server.py # stdio MCP server wrapping query.py
โโโ pyproject.toml # packaged for `uvx` / `pip install`
โโโ README.mdDataset columns (startups.csv)
Rank, Company, Sector, Subsector, Model, Status, Era Scaled, Founded, Valuation ($mn), Funding ($mn), 0โ1 Channels, 1โ10 Channels, Scale Channels, First 1000 Users, Budget Band, Economics Datapoints, Paid vs Organic, Signature Moves, Sponsorships, Regulatory Events, Retention Channels, Trust Burden, Virality, Purchase Freq, CAC Class, Category Play, Core Audience, Geo Tier, What Worked Most, What Failed/Wasted, Confidence, Template
Methodology & honest limits
Derived, not disclosed. Channel mixes are inferred from public evidence โ press, DRHPs/filings, founder interviews, agency case studies, search footprints. Companies rarely publish their channel mix; this reconstructs it.
Confidence-tagged. Every row is high/medium/low. Evidence density thins past rank ~250 โ use the tag rather than trusting all rows equally.
Quality loop. After the first 100 companies, an evaluation answered CMO-style questions from the data and adversarially judged them; the schema was then upgraded (calendar years, channel side, sourced economics) and flagged profiles were re-researched. See
SKILL.md.Scope. Top 350 Indian startups by valuation, 2010โ2025. India-centric; not a guide to other geographies or to today's channel costs without adjustment.
Contributing
Corrections and additions welcome โ this is a living dataset. Open an issue or PR with a company row plus sources. Keep the confidence tag honest.
License
Data: CC-BY-4.0 ยท Code: MIT. Attribution appreciated โ link back to this repo.
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-qualityDmaintenanceMCP server for accessing India's Ministry of Statistics and Programme Implementation (MoSPI) data APIs. Enables natural language queries for economic, demographic, and social indicators via a 4-tool workflow.Last updatedMIT
- Alicense-qualityDmaintenancePython MCP server that exposes Meta Marketing API data, providing tools to manage ad accounts, campaigns, and analytics through natural language interfaces.Last updatedMIT
- Flicense-qualityCmaintenanceProduction-ready MCP server integrating Google Search Console, GA4, and PageSpeed Insights for SEO and analytics intelligence, enabling natural-language queries to Google analytics data.Last updated
- Flicense-qualityBmaintenanceAn MCP server that exposes a LangChain agent with short-term memory to analyze real e-commerce data through predefined SQL tools, enabling natural language queries on sales, customers, and logistics.Last updated
Related MCP Connectors
GibsonAI MCP server: manage your databases with natural language
Hosted MCP server for LLM cost estimation, model comparison, and budget-aware routing.
Analytical memory for AI agents: a real Postgres queried in plain English over MCP. One command.
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/lan-club-live/startup-gtm-skill'
If you have feedback or need assistance with the MCP directory API, please join our Discord server