MCP.so
ログイン

Mcp Server Python

@lucianoayres

Mcp Server Python について

概要はまだありません

基本情報

カテゴリ

その他

ライセンス

MIT license

ランタイム

shell

トランスポート

stdio

公開者

lucianoayres

設定

以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。

{
  "mcpServers": {
    "mcp-server-python-lucianoayres": {
      "command": "python",
      "args": [
        "-m",
        "venv",
        ".venv"
      ]
    }
  }
}

ツール

ツールは検出されませんでした

ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。

概要

What is Mcp Server Python?

Mcp Server Python is an MCP (Model Context Protocol) server built in Python that exposes two basic tools—adding numbers and retrieving an environment variable—for use by LLM-based IDEs such as Cursor AI. It demonstrates how to integrate custom tool functionality into AI-assisted development environments via the standard MCP framework.

How to use Mcp Server Python?

Install the MCP package and CLI extension (pip install mcp mcp[cli]), then run the server locally with mcp dev mcp-server.py. For integration with Cursor AI, configure a mcp.json file with absolute paths to the Python executable and server script, optionally adding environment variables like API_KEY. Once integrated, invoke the tools using natural language prompts (e.g., “add 3 and 5” or “what is my API key?”) in Cursor Composer.

Key features of Mcp Server Python

  • Exposes tools to LLM-based IDEs via MCP.
  • Provides an addition tool summing two numbers.
  • Retrieves API key from the environment variable.
  • Supports CLI for local development and testing.
  • Uses standard I/O transport for seamless communication.
  • Configurable via mcp.json for Cursor AI integration.

Use cases of Mcp Server Python

  • Perform arithmetic calculations via natural language in Cursor Composer.
  • Retrieve environment-specific API keys securely through AI prompts.
  • Prototype and test MCP server functionality locally.
  • Extend AI development environments with custom tool integrations.

FAQ from Mcp Server Python

What dependencies are required to run Mcp Server Python?

Python 3.8 or higher, and the MCP package with CLI extension (pip install mcp mcp[cli]).

How do I test the server locally?

Run mcp dev mcp-server.py and use the provided browser interface to connect, list templates, and test tools.

How do I integrate with Cursor AI?

Create or update the mcp.json file with absolute paths to your Python executable and server script, and optionally define environment variables like API_KEY.

What tools are included?

The server includes two tools: add (returns the sum of two numbers) and getApiKey (returns the value of the API_KEY environment variable).

What transport does the server use?

It uses standard I/O transport for communication with development environments.

コメント

「その他」の他のコンテンツ