Related MCP Server Resources

Explore more AI models, providers, and integration options:

  • Explore AI Models
  • Explore AI Providers
  • Explore MCP Servers
  • LangDB Pricing
  • Documentation
  • AI Industry Blog
  • TMDB MCP Server
  • MCP Pokemon Server
  • Documentation MCP Server
  • Surf MCP Server
  • Mealie MCP Server
Back to MCP Servers
PokeAPI MCP Server

PokeAPI MCP Server

Public
AkhrHysd/mcp-pokeapi-server

Provides Pokémon information retrieval via the Model Context Protocol (MCP) using JSON-RPC 2.0 over stdio, integrating with POKEAPI for seamless access to detailed Pokémon data for LLM apps and MCP clients.

typescript
0 tools
May 29, 2025
Updated Jun 4, 2025

Supercharge Your AI with PokeAPI MCP Server

MCP Server

Unlock the full potential of PokeAPI MCP Server through LangDB's AI Gateway. Get enterprise-grade security, analytics, and seamless integration with zero configuration.

Unified API Access
Complete Tracing
Instant Setup
Get Started Now

Free tier available • No credit card required

Instant Setup
99.9% Uptime
10,000+Monthly Requests

mcp-pokeapi-server

POKEAPI と連携し、MCP(Model Context Protocol)仕様でポケモン情報を取得できるサーバーです。

概要

  • MCP プロトコル(JSON-RPC 2.0 over stdio)で、LLM アプリや MCP クライアントからポケモン情報取得ツールを提供します。
  • POKEAPI(https://pokeapi.co/)を利用。
  • スキーマバリデーションにはzodを使用。

セットアップ

npm install

ビルド

npx tsc

開発用起動(ts-node)

npx ts-node src/index.ts

MCP クライアントからの利用例

MCP クライアントや LLM アプリから、標準入力/出力で JSON-RPC リクエストを送信します。

1. ツール一覧取得(list_tools)

{ "jsonrpc": "2.0", "id": 1, "method": "list_tools" }

レスポンス例

{ "jsonrpc": "2.0", "id": 1, "result": { "tools": [ { "name": "getPokemonInfo", "description": "ポケモン名またはIDから、POKEAPIでポケモン情報を取得します。", "input_schema": { ... }, "output_schema": { ... } } ] } }

2. ポケモン情報取得(call_tool)

{ "jsonrpc": "2.0", "id": 2, "method": "call_tool", "params": { "name": "getPokemonInfo", "arguments": { "nameOrId": "pikachu" } } }

レスポンス例

{ "jsonrpc": "2.0", "id": 2, "result": { "content": [ { "type": "json", "data": { "name": "pikachu", "id": 25, "height": 4, "weight": 60, "types": ["electric"] } } ] } }

テスト

npm test

参考

  • MCP 公式ドキュメント
  • POKEAPI 公式
  • Zenn: MCP 入門
Publicly Shared Threads0

Discover shared experiences

Shared threads will appear here, showcasing real-world applications and insights from the community. Check back soon for updates!

Share your threads to help others
Related MCPs5
  • TMDB MCP Server
    TMDB MCP Server

    Provides AI assistants with seamless access to The Movie Database API via Model Context Protocol, en...

    Added May 30, 2025
  • MCP Pokemon Server
    MCP Pokemon Server

    An MCP server implementation enabling interaction with the PokeAPI to fetch dynamic Pokémon data and...

    Added May 30, 2025
  • Documentation MCP Server
    Documentation MCP Server

    Enables Claude to search and access documentation from popular AI libraries like LangChain, LlamaInd...

    Added May 30, 2025
  • Surf MCP Server
    Surf MCP Server

    Provides tide information by location and date using latitude, longitude, and time zone data via Mod...

    1 tools
    Added May 30, 2025
  • Mealie MCP Server
    Mealie MCP Server

    Enables AI assistants to access and interact with your Mealie recipe database via Model Context Prot...

    Added May 30, 2025