We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2a6bec2 + 91fe8f7 commit 72c8102Copy full SHA for 72c8102
1 file changed
src/holoviz_mcp/server.py
@@ -11,6 +11,8 @@
11
"""
12
13
import asyncio
14
+import logging
15
+import os
16
17
from fastmcp import FastMCP
18
@@ -19,6 +21,8 @@
19
21
from holoviz_mcp.hvplot_mcp.server import mcp as hvplot_mcp
20
22
from holoviz_mcp.panel_mcp.server import mcp as panel_mcp
23
24
+logger = logging.getLogger(__name__)
25
+
26
mcp: FastMCP = FastMCP(
27
name="holoviz",
28
instructions="""
@@ -57,6 +61,8 @@ async def setup_composed_server() -> None:
57
61
58
62
def main() -> None:
59
63
"""Set up and run the composed MCP server."""
64
+ pid = f"Process ID: {os.getpid()}"
65
+ print(pid) # noqa: T201
60
66
67
async def setup_and_run() -> None:
68
await setup_composed_server()
0 commit comments