mirror of
https://github.com/believethehype/nostrdvm.git
synced 2025-04-03 17:38:09 +02:00
18 lines
471 B
Python
18 lines
471 B
Python
from mcp.server.fastmcp import FastMCP
|
|
|
|
mcp = FastMCP("Echo")
|
|
|
|
@mcp.resource("echo://{message}")
|
|
def echo_resource(message: str) -> str:
|
|
"""Echo a message as a resource"""
|
|
return f"Resource echo: {message}"
|
|
|
|
@mcp.tool()
|
|
def echo_tool(message: str) -> str:
|
|
"""Echo a message as a tool"""
|
|
return f"Tool echo: {message}"
|
|
|
|
@mcp.prompt()
|
|
def echo_prompt(message: str) -> str:
|
|
"""Create an echo prompt"""
|
|
return f"Please process this message: {message}" |