Back to stacks

Startup Stack

by Jonathan S

Everything an early-stage startup needs: code, issues, docs, payments, and deployment.

Servers in this stack

developer-tools
GitHub

Interact with GitHub repositories, issues, and pull requests.

@modelcontextprotocol/server-github
project-management
Linear

Manage Linear issues, projects, and teams.

mcp-linear
productivity
Notion

Read and write Notion pages, databases, and blocks.

@modelcontextprotocol/server-notion
developer-tools
Stripe

Manage Stripe payments, customers, and subscriptions.

developer-tools
Vercel

Deploy and manage Vercel projects and deployments.

Copy config

// .vscode/mcp.json
{
"servers": {
"github": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"type": "stdio"
},
"linear": {
"command": "npx",
"args": [
"-y",
"mcp-linear"
],
"type": "stdio"
},
"notion": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-notion"
],
"type": "stdio"
}
}
}