MishkaChelekom.MCP.Supervisor (Mishka Chelekom v0.0.9-alpha.18)

Copy Markdown View Source

Supervisor for the Mishka Chelekom MCP Server.

This supervisor manages the MCP server and its HTTP transport. It can be started manually or via the mix mishka.mcp.server task.

Starting the Server

mix mishka.mcp.server

Programmatically

MishkaChelekom.MCP.Supervisor.start_link(port: 4003)

In Your Application Supervisor

children = [
  {MishkaChelekom.MCP.Supervisor, port: 4003}
]

Options

  • :port - HTTP port to listen on (default: 4003)

Summary

Functions

Returns a specification to start this module under a supervisor.

Functions

child_spec(init_arg)

Returns a specification to start this module under a supervisor.

See Supervisor.

start_link(opts \\ [])