> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mcp-use.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> Build MCP servers with mcp-use's enhanced server framework

<Card title="" img="https://cdn.mcp-use.com/docs/python/Server.jpg" horizontal="true">
  The mcp-use server framework extends the official MCP Python SDK with enhanced features for building production-ready MCP servers. It provides built-in documentation endpoints, inspector UI, improved logging, and seamless integration with the mcp-use ecosystem.
</Card>

## Why mcp-use Server Framework?

While the [official MCP Python SDK](https://github.com/modelcontextprotocol/python-sdk) provides the core protocol functionality, mcp-use enhances it with production-ready features:

<Columns cols={2}>
  <Card title="Official SDK Compatibility" icon="check" href="/python/server/compatibility" img="https://cdn.mcp-use.com/docs/python/MCP.jpg">
    Fully compatible with the official MCP Python SDK. Extends existing functionality without breaking changes, ensuring seamless migration.
  </Card>

  <Card title="Inspector UI" icon="monitor" href="/python/server/inspector" img="https://cdn.mcp-use.com/docs/python/Inspector.jpg">
    Built-in web interface for real-time server monitoring, tool exploration, and debugging. Accessible at /inspector endpoint.
  </Card>

  <Card title="openmcp.json" icon="file-text" href="/python/server/openmcp" img="https://cdn.mcp-use.com/docs/python/OpenMCP.jpg">
    Automatic generation of openmcp.json endpoint for server discovery and metadata. Provides standardized server information for MCP clients and tools.
  </Card>

  <Card title="MCP-Specific Logging" icon="activity" href="/python/server/logging" img="https://cdn.mcp-use.com/docs/python/Logging.jpg">
    Enhanced logging system designed specifically for MCP servers with structured output, request tracing, and performance metrics.
  </Card>
</Columns>

## Compatibility

### Official MCP SDK

mcp-use server framework is **fully compatible** with the official MCP Python SDK. It extends the SDK rather than replacing it, ensuring:

* All official MCP features work as expected
* Existing MCP servers can be easily migrated
* Full compliance with MCP protocol specifications

### fastmcp2

mcp-use complements fastmcp2 by providing:

* **Different Focus**: fastmcp2 focuses on rapid prototyping, mcp-use focuses on production features
* **Enhanced Observability**: Better logging, metrics, and debugging tools
* **Ecosystem Integration**: Native compatibility with mcp-use clients and agents
* **Documentation**: Built-in API documentation and inspector UI

You can use both frameworks in the same project if needed.

## Quick Start

Build your first MCP server in minutes with this step-by-step guide:

<Steps>
  <Step title="Install mcp-use">
    ```bash theme={null}
    pip install mcp-use
    ```
  </Step>

  <Step title="Create your server file">
    Create a new file called `my_server.py`:

    ```python theme={null}
    from mcp_use.server import MCPServer

    server = MCPServer(
        name="My Server",
        version="1.0.0",
        instructions="A simple example server"
    )
    ```
  </Step>

  <Step title="Add your first tool">
    Define a tool using the `@server.tool()` decorator:

    ```python theme={null}
    @server.tool()
    def echo(message: str) -> str:
        """Echo back the provided message."""
        return f"Echo: {message}"
    ```
  </Step>

  <Step title="Add more tools (optional)">
    Add additional tools to extend functionality:

    ```python theme={null}
    @server.tool()
    def calculate(a: int, b: int) -> int:
        """Add two numbers."""
        return a + b

    @server.tool()
    def get_time() -> str:
        """Get current time."""
        from datetime import datetime
        return datetime.now().isoformat()
    ```
  </Step>

  <Step title="Run the server">
    Add the run command at the bottom of your file:

    ```python theme={null}
    if __name__ == "__main__":
        server.run(transport="streamable-http", debug=True)
    ```

    Then run it:

    ```bash theme={null}
    python my_server.py
    ```
  </Step>

  <Step title="Access your server">
    Your server is now running at `http://localhost:8000`:

    * **MCP endpoints**: `/mcp`
    * **OpenMCP metadata**: `/openmcp.json` (debug mode only)
    * **Documentation**: `/docs` (debug mode only)
    * **Inspector UI**: `/inspector` (debug mode only)
  </Step>
</Steps>

### Complete Example

Here's the full code in one place:

```python theme={null}
from mcp_use.server import MCPServer
from datetime import datetime

server = MCPServer(
    name="Example Server",
    version="1.0.0",
    instructions="This is an example server with a simple echo tool."
)

@server.tool()
def echo(message: str) -> str:
    """Echo back the provided message."""
    return f"Echo: {message}"

@server.tool()
def calculate(a: int, b: int) -> int:
    """Add two numbers."""
    return a + b

@server.tool()
def get_time() -> str:
    """Get current time."""
    return datetime.now().isoformat()

if __name__ == "__main__":
    server.run(transport="streamable-http", debug=True)
```

### Transport Options

Choose the right transport for your use case:

```python theme={null}
# Standard input/output (for MCP clients like Claude Desktop)
server.run(transport="stdio")

# HTTP server (for web clients and testing)
server.run(transport="streamable-http", host="0.0.0.0", port=8000)
```

### Debug Mode

Enable debug mode for development features:

```python theme={null}
server = MCPServer(name="My Server", debug=True)
```

Debug mode provides:

* `/openmcp.json` endpoint for server discovery
* `/docs` endpoint with interactive documentation
* Enhanced logging with detailed request information

### Server Icons

Add icons to your server implementation so MCP clients can display them:

```python theme={null}
from mcp.types import Icon
from mcp_use.server import MCPServer

server = MCPServer(
    name="My Server",
    icons=[Icon(src="https://example.com/icon.svg", mime_type="image/svg+xml")],
)
```

Icons are included in the `initialize` response and can be used by clients for display in tool pickers, server lists, etc. You can also set icons on individual tools via the `@server.tool()` decorator:

```python theme={null}
@server.tool(
    icons=[Icon(src="https://example.com/tool-icon.png", mime_type="image/png")],
)
def my_tool(param: str) -> str:
    return param
```

## Next Steps

* [Installation & Setup](/python/getting-started/installation) - Detailed installation instructions
* [Running Your Server](/python/server/running) - Production deployment options
* [Inspector UI](/python/server/inspector) - Monitor and debug your server
