()
| 15 | |
| 16 | |
| 17 | async def main() -> None: |
| 18 | server: Server[dict[str, object]] = Server("mcp") |
| 19 | async with stdio_server() as (read_stream, write_stream): |
| 20 | await server.run(read_stream, write_stream, server.create_initialization_options()) |
| 21 | |
| 22 | |
| 23 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected