MCP.so
登录

Fastapi Mcp Server

@NishizukaKoichi

关于 Fastapi Mcp Server

FastAPI MCP Server は、FastAPI を用いた MCP (Model Context Protocol) サーバーです。 このプロジェクトは、各種ツールやデータソースへのアクセスを統一的に実現することを目指します。

基本信息

分类

开发工具

许可证

MIT license

运行时

python

传输方式

stdio

发布者

NishizukaKoichi

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "fastapi-mcp-server-nishizukakoichi": {
      "command": "python3",
      "args": [
        "-m",
        "venv",
        "venv"
      ]
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Fastapi Mcp Server?

Fastapi Mcp Server is a FastAPI-based MCP (Model Context Protocol) server that implements the MCP protocol using JSON-RPC. It provides a unified interface for AI assistants like Claude Code to access various tools and data sources.

How to use Fastapi Mcp Server?

Clone the repository, create a virtual environment, install dependencies (fastapi, uvicorn), and start the server with uvicorn fastapi_mcp_server.server:app --reload. For integration with Claude Desktop, add a configuration entry in claude_desktop_config.json pointing to the server module.

Key features of Fastapi Mcp Server

  • FastAPI‑based for fast and simple API endpoints
  • Full MCP protocol implementation using JSON‑RPC
  • Unified access to various tools and data sources

Use cases of Fastapi Mcp Server

  • AI assistants invoking tools through a consistent MCP interface
  • Connecting Claude Code to custom data sources or APIs
  • Exposing multiple backend services under a single JSON‑RPC endpoint

FAQ from Fastapi Mcp Server

What does Fastapi Mcp Server do?

It is an MCP server built with FastAPI that enables AI assistants to call tools and access data sources through a standardized JSON‑RPC interface.

How do I install Fastapi Mcp Server?

Clone the repository, create a Python virtual environment, and run pip install fastapi uvicorn. Then start the server with uvicorn fastapi_mcp_server.server:app --reload.

How do I integrate Fastapi Mcp Server with Claude Desktop?

Add the following configuration to claude_desktop_config.json:

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

Restart Claude Desktop to see the server’s tools.

What are the runtime dependencies?

The server requires Python, FastAPI, and Uvicorn. No additional databases or external services are mentioned.

What license is Fastapi Mcp Server released under?

It is licensed under the MIT License.

评论

开发工具 分类下的更多 MCP 服务器