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) Waiting to run
25 lines
667 B
Python
25 lines
667 B
Python
"""Resources primitive: a static URI and an RFC-6570 template via @mcp.resource()."""
|
|
|
|
from mcp.server.mcpserver import MCPServer
|
|
from stories._hosting import run_server_from_args
|
|
|
|
|
|
def build_server() -> MCPServer:
|
|
mcp = MCPServer("resources-example")
|
|
|
|
@mcp.resource("config://app", mime_type="application/json")
|
|
def app_config() -> str:
|
|
"""Static application config."""
|
|
return '{"feature": true}'
|
|
|
|
@mcp.resource("greeting://{name}")
|
|
def greeting(name: str) -> str:
|
|
"""A greeting for the named subject."""
|
|
return f"Hello, {name}!"
|
|
|
|
return mcp
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run_server_from_args(build_server)
|