49b9bb6724
Deploy Docs / deploy-docs (push) Failing after 1s
Conformance Tests / client-conformance (push) Failing after 3s
Conformance Tests / server-conformance (push) Failing after 1s
GitHub Actions Security Analysis / zizmor (push) Failing after 1s
CI / checks (push) Failing after 59m20s
CI / all-green (push) Has been cancelled
19 lines
708 B
Python
19 lines
708 B
Python
from mcp.server.mcpserver import Context, MCPServer
|
|
|
|
mcp = MCPServer(name="Notifications Example")
|
|
|
|
|
|
@mcp.tool()
|
|
async def process_data(data: str, ctx: Context) -> str:
|
|
"""Process data with logging."""
|
|
# Different log levels
|
|
await ctx.debug(f"Debug: Processing '{data}'") # pyright: ignore[reportDeprecated]
|
|
await ctx.info("Info: Starting processing") # pyright: ignore[reportDeprecated]
|
|
await ctx.warning("Warning: This is experimental") # pyright: ignore[reportDeprecated]
|
|
await ctx.error("Error: (This is just a demo)") # pyright: ignore[reportDeprecated]
|
|
|
|
# Notify about resource changes
|
|
await ctx.session.send_resource_list_changed()
|
|
|
|
return f"Processed: {data}"
|