dani-mcp-sse MCP server
@kyoofus
About dani-mcp-sse MCP server
No overview available yet
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"dani-mcp-sse-server": {
"command": "uv",
"args": [
"tool",
"install",
"mcp-proxy"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is dani-mcp-sse?
dani-mcp-sse is a FastAPI MCP server that automatically exposes FastAPI endpoints as MCP (Model Context Protocol) tools without requiring additional configuration. It is intended for developers who want to integrate FastAPI APIs with MCP clients.
How to use dani-mcp-sse?
Install fastapi-mcp and mcp-proxy using uv, then add a JSON entry to claude_desktop_config.json pointing to the server’s MCP endpoint. Run the server with uvicorn (via a registered script in pyproject.toml or directly).
Key features of dani-mcp-sse
- Zero‑configuration integration with FastAPI
- Uses mcp-proxy for client communication
- Simple setup via
pyproject.tomlscripts - Supports Claude Desktop configuration
Use cases of dani-mcp-sse
- Exposing existing FastAPI endpoints as MCP tools for AI agents
- Connecting FastAPI backends to Claude Desktop via MCP protocol
- Rapidly prototyping MCP tool servers without manual boilerplate
FAQ from dani-mcp-sse
What are the dependencies?
You need fastapi-mcp and mcp-proxy. Install both with uv: uv add fastapi-mcp and uv tool install mcp-proxy.
How do I configure the server for Claude Desktop?
Add the following to claude_desktop_config.json:
{
"mcpServers": {
"my-api-mcp-proxy": {
"command": "mcp-proxy",
"args": ["http://127.0.0.1:8000/mcp"]
}
}
}
How do I run the server?
Register a script in pyproject.toml under [project.scripts] (e.g., dani-mcp-sse-server = "dani_mcp_sse_server:main") then run uv run dani-mcp-sse-server. Alternatively, start the FastAPI application with uvicorn manually.
More Other MCP servers
MCP Registry
modelcontextprotocolA community driven registry service for Model Context Protocol (MCP) servers.
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
AutoBrowser MCP
autobrowser-aiBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
XcodeBuildMCP
cameroncookeA Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Comments