MCP Server TypeScript Starter
@yhwancha
MCP Server TypeScript Starter について
A Model Context Protocol (MCP) server that provides location services
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"location-service": {
"command": "npx",
"args": [
"-y",
"mylocation-mcp-server"
],
"env": {
"IPINFO_TOKEN": ""
}
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is MCP Server TypeScript Starter?
MCP Server TypeScript Starter is a Model Context Protocol (MCP) server implementation that provides location services. It demonstrates how to build a production-ready MCP server using TypeScript with real-world functionality for looking up location data via geographic coordinates or IP addresses. The server is intended for developers who want a reference implementation or a starting point for their own MCP services.
How to use MCP Server TypeScript Starter?
Install the package via npm install mylocation-mcp, create a .env file with your IPInfo.io API token (IPINFO_TOKEN), then import and use the server in your TypeScript code. Alternatively, configure the server in your project’s MCP settings using the provided npx command with the environment variable set.
Key features of MCP Server TypeScript Starter
- Full TypeScript configuration and type-safe development environment
- Complete MCP server setup with tool registration
- Coordinate-based location lookup tool
- IP-based location lookup using IPInfo.io API
- Health check endpoint for service monitoring
- Integration with external APIs via
axios
Use cases of MCP Server TypeScript Starter
- Quickly prototype a location-aware MCP server for chat or agent applications
- Learn how to structure a TypeScript-based MCP server with external API calls
- Provide location lookup as a tool in an MCP-enabled assistant or IDE
- Use as a template for building your own custom MCP services
FAQ from MCP Server TypeScript Starter
What dependencies does the server use?
The server requires @modelcontextprotocol/sdk, zod for input validation, axios for HTTP requests, dotenv for environment variable management, and TypeScript development tools.
What API key is required?
You need an IPInfo.io API token (IPINFO_TOKEN) to use the IP-based location lookup. The token is set as an environment variable.
How do I configure the MCP server in my project?
Add an entry to your MCP configuration object with command npx, arguments ["-y", "mylocation-mcp-server"], and environment variable IPINFO_TOKEN.
What format do the tool responses follow?
Responses are JSON objects wrapped in a standard MCP content array. Each response contains a status (“success” or “error”), a source (“user_provided” or “ip_based”), a data field with location information (on success), and an error field with an error message (on failure).
Does the server support any other lookup methods?
The README describes three tools: coordinate-based lookup, IP-based lookup, and a health check. No other lookup methods are mentioned.
「開発者ツール」の他のコンテンツ
MCP server to deploy code to Google Cloud Run
GoogleCloudPlatformMCP server to deploy apps to Cloud Run
Code Index MCP
johnhuang316A Model Context Protocol (MCP) server that helps large language models index, search, and analyze code repositories with minimal setup
OpenSumi
opensumiA framework helps you quickly build AI Native IDE products. MCP Client, supports Model Context Protocol (MCP) tools via MCP server.
nuxt-mcp / vite-plugin-mcp
antfuMCP server helping models to understand your Vite/Nuxt app better.
mcp-excalidraw
yctimlinMCP server and Claude Code skill for Excalidraw — programmatic canvas toolkit to create, edit, and export diagrams via AI agents with real-time canvas sync.
コメント