TypeScript MCP Server Boilerplate

TypeScript MCP Server Boilerplate

A boilerplate for building MCP servers using TypeScript, with example tools like calculator and greet, plus resource support.

Category
Visit Server

README

my-mcp-server (Vercel · Streamable HTTP)

Next.js App Router 와 mcp-handler 위에서 동작하는 Vercel 배포형 MCP 서버입니다. 기존 StdioServerTransport 기반 로컬 서버를 Streamable HTTP 트랜스포트로 이전하여 임의의 MCP 클라이언트(Cursor, Claude Desktop, MCP Inspector 등) 에서 원격으로 호출할 수 있습니다.

아키텍처

MCP Client (Cursor / Inspector)
       │  Streamable HTTP
       │  + x-hf-token header (선택)
       ▼
Next.js App Router (on Vercel)
  app/api/[transport]/route.ts
       │
       ▼
createMcpHandler ─► McpServer
  ├─ tools: greet / calculate / time / geocode / weather / generate-image
  ├─ prompts: code-review
  └─ resources: server-info

[transport] 동적 세그먼트를 사용해 매 요청마다 핸들러를 새로 만들고, 요청 헤더 (x-hf-token) 와 환경변수(HF_TOKEN) 를 클로저로 캡처해 generate-image 도구에 전달합니다.

프로젝트 구조

.
├── app/
│   ├── api/
│   │   └── [transport]/
│   │       └── route.ts   # MCP HTTP 엔드포인트
│   ├── layout.tsx
│   └── page.tsx           # 안내용 정적 페이지
├── next.config.mjs
├── next-env.d.ts
├── package.json
├── tsconfig.json
└── .env.example

빠른 시작

1. 의존성 설치

npm install

2. 환경변수 설정 (선택)

generate-image 도구를 사용할 계획이라면 .env.example.env.local 로 복사한 뒤 HuggingFace 토큰을 채워 넣습니다.

cp .env.example .env.local
# 그리고 HF_TOKEN=hf_xxx... 로 수정

환경변수가 없어도 클라이언트가 매 요청마다 x-hf-token 헤더를 보내면 동작합니다.

3. 로컬 실행

npm run dev

기본 엔드포인트:

4. MCP Inspector 로 검증

npx @modelcontextprotocol/inspector@latest

Inspector UI 에서:

  1. Transport: Streamable HTTP
  2. URL: http://localhost:3000/api/mcp
  3. (선택) Custom Headers 에 x-hf-token: hf_xxx... 추가
  4. ConnectList Tools → 각 도구 호출 테스트

클라이언트 연결

Cursor (./.cursor/mcp.json)

{
    "mcpServers": {
        "my-mcp-server": {
            "url": "https://<your-app>.vercel.app/api/mcp",
            "headers": {
                "x-hf-token": "hf_xxx..."
            }
        }
    }
}

url 만 있으면 5개 도구(greet/calculate/time/geocode/weather)는 정상 동작합니다. generate-image 를 사용하려면 headers.x-hf-token 또는 서버측 HF_TOKEN 환경변수 중 하나가 반드시 필요합니다.

Streamable HTTP 미지원 클라이언트 (mcp-remote 브릿지)

{
    "mcpServers": {
        "my-mcp-server": {
            "command": "npx",
            "args": [
                "-y",
                "mcp-remote",
                "https://<your-app>.vercel.app/api/mcp",
                "--header",
                "x-hf-token:hf_xxx..."
            ]
        }
    }
}

Vercel 배포

방법 1: Vercel CLI

npm i -g vercel
vercel

방법 2: GitHub 연동

  1. GitHub 저장소에 푸시
  2. https://vercel.com/new 에서 저장소 선택
  3. Framework Preset: Next.js (자동 감지)
  4. Environment Variables 에서 (선택) HF_TOKEN 추가
  5. Deploy

배포가 완료되면 https://<your-app>.vercel.app/api/mcp 가 MCP 엔드포인트입니다.

등록된 도구

이름 설명
greet 이름과 언어(ko/en)로 인사말 생성
calculate 두 숫자 사칙연산 (add/subtract/multiply/divide)
time 타임존별 현재 시간
geocode Open-Meteo 로 도시명 → 위경도 조회
weather Open-Meteo 로 위경도 → 현재 날씨 조회
generate-image HuggingFace FLUX.1-schnell 이미지 생성 (x-hf-token 또는 HF_TOKEN)

프롬프트 / 리소스

  • 프롬프트 code-review: 코드를 입력받아 시니어 엔지니어 관점의 체계적 리뷰 메시지 생성
  • 리소스 server-info (mcp://my-mcp-server/info): 서버 메타데이터(JSON)

HF_TOKEN 처리 정책

x-hf-token 헤더 ──(있으면 사용)──► HuggingFace Inference
       │ (없음)
       ▼
HF_TOKEN 환경변수 ──(있으면 사용)──► HuggingFace Inference
       │ (없음)
       ▼
generate-image 도구가 명확한 에러 메시지 반환

헤더가 우선이므로 동일 배포 인스턴스를 여러 사용자가 각자의 토큰으로 사용할 수 있습니다.

스크립트

  • npm run dev: 로컬 개발 서버
  • npm run build: 프로덕션 빌드
  • npm run start: 빌드 결과 실행
  • npm run lint: Next.js lint

참고 자료

라이선스

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured