API Tester MCP Server

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Integrations

  • Supports secure API key management through .env files, allowing users to store sensitive credentials like OpenAI API keys without exposing them in chat.

  • Supports environment variable configuration on Linux systems when setting up API keys for service integrations.

  • Provides environment variable configuration support for macOS systems when setting up API keys for service integrations.

APIテスターMCPサーバー

これは、Claude がユーザーに代わって API リクエストを実行できるようにする Model Context Protocol (MCP) サーバーです。OpenAI API との専用統合を含む、さまざまな API をテストするためのツールを提供します。

特徴

  • 任意の API に HTTP リクエスト (GET、POST、PUT、DELETE) を送信します。
  • チャットでAPIキーを共有せずにOpenAIのGPTモデルをテストする
  • DALL-Eで画像を生成する
  • 読みやすいように適切にフォーマットされた回答

設定

前提条件

  • Python 3.10以上
  • MCP SDK 1.2.0以上

インストール

  1. 必要な依存関係をインストールします。
pip install "mcp[cli]" httpx python-dotenv
  1. 次のいずれかの方法で OpenAI API キーを設定します。

オプション1: 環境変数

# On Windows (PowerShell) $env:OPENAI_API_KEY = "your-api-key" # On Windows (Command Prompt) set OPENAI_API_KEY=your-api-key # On macOS/Linux export OPENAI_API_KEY="your-api-key"

オプション 2: .env ファイルの使用 (推奨)

プロジェクト ディレクトリに.envファイルを作成します ( .env.exampleからコピーします)。

OPENAI_API_KEY=your_openai_api_key_here

サーバーの実行

python main.py

クロードと一緒に使う

サーバーが稼働したら、Claude Desktop 構成ファイルで構成することで、Claude for Desktop に接続できます。

プロンプトの例

一般的なAPIテスト

Use the get_request tool to fetch data from https://jsonplaceholder.typicode.com/posts/1
Use the post_request tool to send data to https://jsonplaceholder.typicode.com/posts with this JSON body: {"title": "Test Post", "body": "This is a test", "userId": 1}

OpenAIツールの使用

Use the openai_chat_completion tool with: prompt: "Write a short poem about artificial intelligence" system_message: "You are a helpful assistant that writes creative poetry" model: "gpt-4"
Use the openai_image_generation tool with: prompt: "A futuristic city with flying cars and tall glass buildings at sunset" size: "1024x1024"

利用可能なツール

一般的なAPIツール

  • get_request : 任意の URL に GET リクエストを送信する
  • post_request : JSONボディでPOSTリクエストを行う
  • put_request : JSONボディでPUTリクエストを行う
  • delete_request : DELETEリクエストを行う

OpenAI固有のツール

  • openai_chat_completion : OpenAIのチャットモデルを使用してテキストを生成する
  • openai_image_generation : DALL-Eを使用して画像を生成する

セキュリティノート

  • OpenAI APIキーはサーバーに保存され、チャットでは公開されません
  • APIの使用はOpenAIの割り当てにカウントされ、料金が発生する場合があります
  • 本番環境での使用では、APIキーを環境変数として設定するか、 .envファイルを使用してください。
  • .envファイルは、APIキーを誤ってコミットするのを防ぐために.gitignoreに含まれています。
-
security - not tested
F
license - not found
-
quality - not tested

Claude がユーザーに代わって API リクエストを実行できるようにするモデル コンテキスト プロトコル サーバー。チャットで API キーを共有せずに、HTTP リクエストや OpenAI 統合などのさまざまな API をテストするためのツールを提供します。

  1. Features
    1. Setup
      1. Prerequisites
      2. Installation
      3. Running the Server
    2. Using with Claude
      1. Example Prompts
    3. Available Tools
      1. General API Tools
      2. OpenAI-Specific Tools
    4. Security Notes
      ID: bcp8tgdqzn