> ## 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.

# Openmcp

> Openmcp API Documentation

export const RandomGradientBackground = ({className, color, children, grayscaled = false}) => {
  const saturation = useMemo(() => {
    if (color) {
      const values = color.split("(")[1].split(")")[0].trim().split(/\s+/);
      return parseFloat(values[1] || "0");
    }
    return grayscaled ? 0 : 0.2;
  }, [color, grayscaled]);
  const lightness = useMemo(() => {
    if (color) {
      const values = color.split("(")[1].split(")")[0].trim().split(/\s+/);
      return parseFloat(values[0] || "0.5");
    }
    return grayscaled ? 0.3 : 0.4;
  }, [color, grayscaled]);
  const randomHue = useMemo(() => {
    if (color) {
      const values = color.split("(")[1].split(")")[0].trim().split(/\s+/);
      return parseFloat(values[2] || "0");
    }
    return Math.floor(Math.random() * 360);
  }, [color]);
  const randomColor = useMemo(() => {
    if (color) {
      return color;
    }
    return `oklch(${Math.min(lightness, 1)} ${saturation} ${randomHue})`;
  }, [randomHue, saturation, lightness]);
  const lightColor = useMemo(() => {
    return `oklch(${Math.min(lightness * 2, 1)} ${saturation} ${randomHue})`;
  }, [randomHue, saturation, lightness, color]);
  const direction = useMemo(() => {
    return Math.floor(Math.random() * 360);
  }, [randomHue]);
  const brightnessFilter = useMemo(() => {
    return "1000%";
  }, []);
  return <div className={`relative overflow-hidden ${className || ""}`} style={{
    background: `${lightColor}`,
    minHeight: '100%',
    width: '100%'
  }}>
      <div className="absolute inset-0 w-full h-full" style={{
    background: `linear-gradient(${direction}deg, ${randomColor}, transparent), url(https://grainy-gradients.vercel.app/noise.svg)`,
    filter: `contrast(120%) brightness(${brightnessFilter})`,
    backgroundSize: 'cover',
    backgroundRepeat: 'no-repeat'
  }} />
      {children && <div className="relative z-10 w-full h-full">{children}</div>}
    </div>;
};

<Callout type="info" title="Source Code">
  View the source code for this module on GitHub: <a href="https://github.com/mcp-use/mcp-use/blob/main/libraries/python/mcp_use/server/utils/openmcp.py" target="_blank" rel="noopener noreferrer">[https://github.com/mcp-use/mcp-use/blob/main/libraries/python/mcp\_use/server/utils/openmcp.py](https://github.com/mcp-use/mcp-use/blob/main/libraries/python/mcp_use/server/utils/openmcp.py)</a>
</Callout>

## OpenMCPInfo

<div>
  <RandomGradientBackground className="rounded-lg p-4 w-full h-full rounded-full">
    <div className="text-black">
      <div className="text-black font-bold text-xl mb-2 mt-8"><code className="!text-black">class</code> OpenMCPInfo</div>

      OpenMCP server info structure.
    </div>
  </RandomGradientBackground>

  ```python theme={null}
  from mcp_use.server.utils.openmcp import OpenMCPInfo
  ```

  <Card type="info">
    ### `method` **init**

    **Parameters**

    > <ParamField body="title" type="str" required="True">   String value </ParamField>
    > <ParamField body="version" type="str | None" default="None">   String value </ParamField>
    > <ParamField body="description" type="str | None" default="None">   String value </ParamField>

    **Signature**

    ```python wrap theme={null}
    def __init__(title: str, version: str | None = None, description: str | None = None):
    ```
  </Card>
</div>

## OpenMCPResponse

<div>
  <RandomGradientBackground className="rounded-lg p-4 w-full h-full rounded-full">
    <div className="text-black">
      <div className="text-black font-bold text-xl mb-2 mt-8"><code className="!text-black">class</code> OpenMCPResponse</div>

      Strongly typed OpenMCP response structure.
    </div>
  </RandomGradientBackground>

  ```python theme={null}
  from mcp_use.server.utils.openmcp import OpenMCPResponse
  ```

  <Card type="info">
    ### `method` **init**

    **Parameters**

    > <ParamField body="info" type="mcp_use.server.utils.openmcp.OpenMCPInfo" required="True">   Parameter value </ParamField>
    > <ParamField body="capabilities" type="mcp.types.ServerCapabilities" required="True">   Parameter value </ParamField>
    > <ParamField body="tools" type="list[mcp.types.Tool]" required="True">   List of tools </ParamField>
    > <ParamField body="resources" type="list[mcp.types.Resource]" required="True">   List of items </ParamField>
    > <ParamField body="resources_templates" type="list[mcp.types.ResourceTemplate]" required="True">   List of items </ParamField>
    > <ParamField body="prompts" type="list[mcp.types.Prompt]" required="True">   List of items </ParamField>

    **Signature**

    ```python wrap theme={null}
    def __init__(info: mcp_use.server.utils.openmcp.OpenMCPInfo, capabilities: mcp.types.ServerCapabilities, tools: list[mcp.types.Tool], resources: list[mcp.types.Resource], resources_templates: list[mcp.types.ResourceTemplate], prompts: list[mcp.types.Prompt]):
    ```
  </Card>

  <Card type="info">
    ### `method` to\_dict

    Convert to dictionary for JSON serialization.

    **Returns**

    >     <ResponseField name="returns" type="dict[str, Any]" />

    **Signature**

    ```python wrap theme={null}
    def to_dict():
    ```
  </Card>
</div>

## get\_openmcp\_json

<Card type="info">
  ### `function` get\_openmcp\_json

  Generate OpenMCP JSON response for a FastMCP server.

  ```python theme={null}
  from mcp_use.server.utils.openmcp import get_openmcp_json
  ```

  **Parameters**

  > <ParamField body="server" type="MCPServer" required="True">   The FastMCP server instance </ParamField>

  **Returns**

  > <ResponseField name="returns" type="starlette.responses.JSONResponse">JSONResponse containing the OpenMCP server description</ResponseField>

  **Signature**

  ```python wrap theme={null}
  def get_openmcp_json(server: MCPServer):
  ```
</Card>
