manifest
Definitions for extension manifests and MCP server registrations.
This module provides small immutable data containers used by extension discovery and registration. These types describe one extension package and the MCP servers that it contributes to MADA.
ExtensionManifest
dataclass
Describe one installable MADA extension package.
Attributes:
| Name | Type | Description |
|---|---|---|
display_name |
str
|
Human-readable name for the extension package. |
version |
str
|
Version string reported by the extension package. |
provider_package |
str
|
Python package or distribution providing this extension. |
mcp_servers |
tuple[MCPServerRegistration, ...]
|
MCP server registrations contributed by the extension. |
Source code in src/mada_tools/extensions/manifest.py
MCPServerRegistration
dataclass
Describe one MCP server contributed by an extension.
Attributes:
| Name | Type | Description |
|---|---|---|
name |
str
|
The server name used by MADA configuration and discovery output. |
module_path |
str
|
Importable Python module path for the server implementation. |
package |
str
|
Provider package name associated with the registration. |
description |
str | None
|
Optional human-readable description of the server registration. |