Skip to main content
AC

The MCP Library

Curated Model Context Protocol servers, ready-to-copy install commands, and production server templates in Python and TypeScript. Free, no gate.

  • 10 curated servers
  • 2 server templates
  • 3 install guides
  • 5 registries
Live endpointstreamable-http

My website is an MCP server. Your agent can talk to it right now.

This site runs its own live MCP server. Connect any MCP client to query Alex's bio, positioning, speaking topics, blog posts, availability, and submit contact requests - agent-to-agent.

claude mcp add --transport http alexcinovoj https://alexcinovoj.com/mcp

Tools exposed

  • get_bio
  • get_positioning
  • get_speaking_topics
  • list_blog_posts
  • check_availability
  • submit_contact

Endpoint: https://alexcinovoj.com/mcp

01 / Curated servers

10 servers worth wiring up.

Each one earns its place by removing a real failure mode, not by being on a list. Copy the install command, read the docs, keep writes behind a review gate.

10 servers shown

Backend & Datastdio/http

Supabase MCP

Manage Postgres schema, run SQL, read logs, deploy edge functions, and check security advisors from your agent.

The fastest way to give an agent safe, structured access to your database instead of raw connection strings.

claude mcp add supabase -- npx -y @supabase/mcp-server-supabase@latest --project-ref=<ref>
Docs
Dev Workflowhttp

GitHub MCP

Issues, PRs, code search, CI status, and repo management through the official GitHub MCP server.

Turns your agent into a teammate that can triage issues and review PRs, not just write code.

claude mcp add --transport http github https://api.githubcopilot.com/mcp/
Docs
Testing & QAstdio

Playwright MCP

Drive a real browser: navigate, click, fill forms, screenshot, and assert on live pages.

The single biggest upgrade for agent QA loops - the agent verifies its own UI work in a real browser.

claude mcp add playwright -- npx -y @playwright/mcp@latest
Docs
Paymentshttp

Stripe MCP

Query customers, subscriptions, invoices, and payment state; search Stripe docs from the agent.

Money paths need read-first tooling. Pair with a HALT-GO review gate before any write.

claude mcp add --transport http stripe https://mcp.stripe.com
Docs
Docs & Contexthttp

Context7

Pulls current, version-specific library docs into context so agents stop hallucinating APIs.

Kills the 'trained on last year's API' failure mode for fast-moving frameworks.

claude mcp add --transport http context7 https://mcp.context7.com/mcp
Docs
Knowledge & PMhttp

Notion MCP

Search, read, and write Notion pages and databases with the official hosted server.

Puts your team's operating docs one tool call away from every agent.

claude mcp add --transport http notion https://mcp.notion.com/mcp
Docs
Designhttp

Figma MCP

Read design context, variables, and screenshots; generate designs and connect components to code.

Design-to-code with real tokens and components instead of screenshot guessing.

claude mcp add --transport http figma https://mcp.figma.com/mcp
Docs
Observabilityhttp

Sentry MCP

Query errors, issues, and traces; let agents root-cause production failures with Seer.

Closes the loop: the agent that shipped the bug can find and fix the bug.

claude mcp add --transport http sentry https://mcp.sentry.dev/mcp
Docs
Dev Workflowhttp

Linear MCP

Create and update issues, projects, and cycles in Linear from any MCP client.

Agents that file their own tickets keep humans in the planning loop.

claude mcp add --transport http linear https://mcp.linear.app/mcp
Docs
Web & Researchstdio

Firecrawl MCP

Scrape, crawl, and extract structured data from any website for agent research pipelines.

Research-grade web access with clean markdown output agents can actually use.

claude mcp add firecrawl -e FIRECRAWL_API_KEY=<key> -- npx -y firecrawl-mcp
Docs

02 / Server templates

Write your own server in one file.

Production-shaped starting points. One tool, one resource, stdio for local development, streamable HTTP when you deploy.

Python MCP server (FastMCP)

Minimal production-shaped Python MCP server using the official SDK's FastMCP. One tool, one resource, stdio for local dev, streamable HTTP for deploy.

Install

pip install "mcp[cli]"

Run

python server.py # stdio fastmcp run server.py --transport streamable-http --port 8000
server.py
from mcp.server.fastmcp import FastMCP

mcp = FastMCP("techtide-example")

@mcp.tool()
def estimate_project(scope: str, weeks: int) -> str:
    """Estimate an AI automation project. Returns a rough cost band."""
    base = 4000
    return f"{scope}: ${base * weeks:,} - ${int(base * weeks * 1.6):,} over {weeks} weeks"

@mcp.resource("docs://playbook")
def playbook() -> str:
    """TechTide delivery playbook summary."""
    return "Scope one vertical slice. Ship behind a gate. Verify in a real browser."

if __name__ == "__main__":
    mcp.run()

03 / Install guides

Wire a server into your client.

Run from your project root. Project scope writes .mcp.json so the team shares the server.

Claude Code CLI
claude mcp add --transport http <name> <url>
claude mcp add <name> -- npx -y <package>   # stdio
# scopes: --scope local | project | user ; project scope writes .mcp.json
Pair servers with skills

Servers give an agent hands. Skills give it judgement. The open skills library holds the SKILL.md files behind these workflows, free to copy into Claude Code, Cursor, or Lovable.