15 lines
315 B
Python
15 lines
315 B
Python
from pathlib import Path
|
|
|
|
from mcp.server import MCPServer
|
|
from mcp.server.mcpserver import Image
|
|
|
|
mcp = MCPServer("Brand kit")
|
|
|
|
LOGO_FILE = Path(__file__).parent / "logo.png" # or the path to your file on disk
|
|
|
|
|
|
@mcp.tool()
|
|
def logo() -> Image:
|
|
"""The brand logo as a PNG."""
|
|
return Image(path=LOGO_FILE)
|