Cover image
Try Now
2025-04-04

MCP服务器实现的无建筑物打字稿快速启动

3 years

Works with Finder

1

Github Watches

0

Github Forks

0

Github Stars

MCP TS Quickstart

This is a quickstart for MCP in TypeScript.

It includes a basic MCP server implementation that uses the stdio transport, and fetches the top stories from Hacker News.

It is written in TypeScript and works without a build step by utilizing Node v23.

Based on the example provided in the MCP documentation.

preview

Usage

The snippet below requires git, nvm, and pnpm.

git clone git@github.com:cephalization/mcp-ts-quickstart.git
cd mcp-ts-quickstart
nvm install && nvm use
pnpm install

Once cloned and dependencies installed, you can add this server to Claude Desktop with a config similar to the following:

{
  "mcpServers": {
    "hacker-news": {
      "command": "/Users/tony/.nvm/versions/node/v23.6.0/bin/node",
      "args": ["/Users/tony/repos/mcp/src/index.ts"]
    }
  }
}

See the MCP documentation for more information on how to use Claude Desktop as a client.

Development

The following commands will install the dependencies, and then start the MCP server with the MCP Inspector UI as a client.

nvm install && nvm use
pnpm install
pnpm start

Because the server is build-less, you can simply "restart" the server inside of the inspector UI by pressing the "Restart" button.

Extending the server

The server is implemented in src/index.ts.

The topStories tool is implemented in src/tools.ts.

To add a new tool, you can copy the topStories tool and modify it.

When importing local src files, make sure to use the .ts extension so that node can resolve it.

When importing types, make sure to add the type keyword in front of the import so that node can strip it out at runtime.

When importing libraries, make sure to import the actual source file extension, if it does not provide an exports mapping.

MCP Inspector

The MCP Inspector is a UI for interacting with MCP servers.

When run, it will be available at http://localhost:6274.

相关推荐

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • Alexandru Strujac
  • Efficient thumbnail creator for YouTube videos

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • lumpenspace
  • Take an adjectivised noun, and create images making it progressively more adjective!

  • Lists Tailwind CSS classes in monospaced font

  • https://maiplestudio.com
  • Find Exhibitors, Speakers and more

  • https://appia.in
  • Siri Shortcut Finder – your go-to place for discovering amazing Siri Shortcuts with ease

  • Carlos Ferrin
  • Encuentra películas y series en plataformas de streaming.

  • Yusuf Emre Yeşilyurt
  • I find academic articles and books for research and literature reviews.

  • tomoyoshi hirata
  • Sony α7IIIマニュアルアシスタント

  • apappascs
  • 发现市场上最全面,最新的MCP服务器集合。该存储库充当集中式枢纽,提供了广泛的开源和专有MCP服务器目录,并提供功能,文档链接和贡献者。

  • ShrimpingIt
  • MCP系列GPIO Expander的基于Micropython I2C的操作,源自ADAFRUIT_MCP230XX

  • jae-jae
  • MCP服务器使用剧作《无头浏览器》获取网页内容。

  • HiveNexus
  • 一个适用于中小型团队的AI聊天机器人,支持DeepSeek,Open AI,Claude和Gemini等车型。 专为中小团队设计的ai聊天应用,支持deepSeek,打开ai,claude,双子座等模型。

  • ravitemer
  • 一个功能强大的Neovim插件,用于管理MCP(模型上下文协议)服务器

  • patruff
  • Ollama和MCP服务器之间的桥梁,使本地LLMS可以使用模型上下文协议工具

  • pontusab
  • 光标与风浪冲浪社区,查找规则和MCP

  • JackKuo666
  • 🔍使AI助手可以通过简单的MCP接口搜索和访问PYPI软件包信息。

    Reviews

    4 (1)
    Avatar
    user_XnBVLiPL
    2025-04-17

    I recently used the mcp-ts-quickstart by cephalization and it has significantly streamlined my TypeScript project setup. The GitHub link (https://github.com/cephalization/mcp-ts-quickstart) provides an excellent starting point with clear instructions and a user-friendly structure. Highly recommend for developers looking to save time and enhance productivity.