server_manager
Server management utilities for MCP servers.
This module provides the ServerManager class, which discovers, starts,
stops, restarts, and monitors MCP server processes. It integrates with
ServerStateManager to persist and validate server runtime state across
invocations. Configuration is passed per-operation rather than at
construction time, allowing a single manager instance to handle both
config-based operations (start, restart) and state-only operations
(stop, status).
ServerManager
Coordinate operations for MCP server processes.
The ServerManager provides operations to start, stop, restart, and query
the status of MCP server processes. It uses ServerStateManager to track
and validate running server instances across sessions.
Operations that start servers (start_servers, restart_servers) require a configuration file to be passed in. Operations that only need to interact with running servers (stop_servers, get_server_statuses) work purely from the state file.
Attributes:
| Name | Type | Description |
|---|---|---|
state_manager |
ServerStateManager
|
Manager responsible for persisting and validating server runtime state. |
_extension_registry |
ExtensionRegistry
|
Registry used to resolve available MCP server registrations. |
Methods:
| Name | Description |
|---|---|
start_servers |
Start all or a subset of configured servers. |
start_server |
Start a single server process and register it with the state manager. |
stop_servers |
Stop all or a subset of currently running servers. |
stop_server |
Stop a single server, attempting graceful shutdown before forcing. |
restart_servers |
Restart all or a subset of configured servers. |
restart_server |
Restart a single server, stopping it if running then starting a fresh instance. |
get_server_statuses |
Retrieve |
print_server_statuses |
Print a simple table of server statuses to stdout. |
Source code in src/mada_tools/server_management/server_manager.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 | |
__init__(state_file=None)
Constructor for the ServerManager.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
state_file
|
Optional[Path]
|
Optional path to state file for ServerStateManager. |
None
|
Source code in src/mada_tools/server_management/server_manager.py
get_server_statuses(server_names=None, config_file=None)
Get status information for specified servers or all servers.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
server_names
|
Optional[List[str]]
|
Optional list of server names. If None, returns all running servers. |
None
|
config_file
|
Optional[Path]
|
Optional path to config file. If provided, shows all servers from config (even if stopped). If not provided, shows all servers from state. |
None
|
Returns:
| Type | Description |
|---|---|
Dict[str, ServerInfo]
|
Dictionary mapping server names to their ServerInfo with current status. |
Source code in src/mada_tools/server_management/server_manager.py
print_server_statuses(server_names=None, config_file=None)
Output the statuses of servers to the terminal.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
server_names
|
Optional[List[str]]
|
Optional list of server names. If None, shows all running servers. |
None
|
config_file
|
Optional[Path]
|
Optional path to config file. If provided, shows all servers from config (even if stopped). If not provided, shows all servers from state. |
None
|
Source code in src/mada_tools/server_management/server_manager.py
restart_server(config_file, name, server_info)
Restart a server (stop then start).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_file
|
Path
|
Path to the JSON configuration file |
required |
name
|
str
|
Server name to restart |
required |
server_info
|
ServerInfo
|
ServerInfo instance from config |
required |
Source code in src/mada_tools/server_management/server_manager.py
restart_servers(config_file, server_names=None)
Restart specified MCP servers or all servers if none specified.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_file
|
Path
|
Path to the JSON configuration file defining servers |
required |
server_names
|
Optional[List[str]]
|
Optional list of server names to restart. If None, restarts all configured servers. |
None
|
Source code in src/mada_tools/server_management/server_manager.py
start_server(config_file, name, server_info)
Start an individual MCP server.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_file
|
Path
|
Path to the JSON configuration file |
required |
name
|
str
|
The server name |
required |
server_info
|
ServerInfo
|
A ServerInfo instance containing information about the server to start. |
required |
Source code in src/mada_tools/server_management/server_manager.py
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | |
start_servers(config_file, server_names=None)
Start specified MCP servers or all servers if none specified.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_file
|
Path
|
Path to the JSON configuration file defining servers |
required |
server_names
|
Optional[List[str]]
|
Optional list of server names to start. If None, starts all. |
None
|
Raises:
| Type | Description |
|---|---|
ValueError
|
Raised when a requested server name is not present in the resolved configuration. |
Source code in src/mada_tools/server_management/server_manager.py
stop_server(name, server_info, timeout=10)
Stop an individual MCP server.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The server name to stop. |
required |
server_info
|
ServerInfo
|
ServerInfo with process details |
required |
timeout
|
int
|
Seconds to wait for graceful shutdown before force kill |
10
|
Returns:
| Name | Type | Description |
|---|---|---|
bool |
bool
|
True if server was stopped, False if not running |
Source code in src/mada_tools/server_management/server_manager.py
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 | |
stop_servers(server_names=None, config_file=None)
Stop specified running MCP servers or all servers if none specified.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
server_names
|
Optional[List[str]]
|
Optional list of server names to stop. If None, stops all. |
None
|
config_file
|
Optional[Path]
|
Optional path to config file. If provided, shows all servers from config (even if stopped). If not provided, shows all servers from state. |
None
|