API Reference¶
This page provides detailed API documentation for the MCP Compressor package.
Main Module¶
Main entry point for the MCP Compressor CLI.
This module provides the CLI interface for running the MCP Compressor proxy server, which wraps existing MCP servers and compresses their tool descriptions to reduce token consumption.
main(command_or_url_list, cwd=None, env_list=None, header_list=None, timeout=10.0, compression_level=CompressionLevel.MEDIUM, server_name=None, log_level=LogLevel.WARNING)
¶
Run the MCP Compressor proxy server.
This is the main entry point for the CLI application. It connects to an MCP server (via stdio, HTTP, or SSE) and wraps it with a compressed tool interface.
Source code in mcp_compressor/main.py
33 34 35 36 37 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 | |
Tools Module¶
Tool compression middleware for MCP servers.
This module provides the CompressedTools middleware that wraps MCP server tools and compresses their descriptions to reduce token consumption while maintaining full functionality through a two-step tool invocation pattern.
CompressedTools
¶
Bases: Middleware
Middleware that compresses MCP tool descriptions to reduce token consumption.
This middleware wraps an MCP client and exposes its tools through a compressed interface. Instead of exposing tools directly with full schemas, it provides two or three wrapper tools: - get_tool_schema: Retrieves the full schema for a specific tool - invoke_tool: Executes a tool with the provided arguments - list_tools: (optional) Lists all available tools with brief descriptions (only if compression level is MAX)
The compression level determines how much information is included in the get_tool_schema tool description.
Source code in mcp_compressor/tools.py
33 34 35 36 37 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 | |
__init__(proxy_server, compression_level, server_name=None)
¶
Initialize the CompressedTools middleware.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
proxy_server
|
FastMCP
|
The MCP proxy server instance. |
required |
compression_level
|
CompressionLevel
|
The level of compression to apply to tool descriptions. |
required |
server_name
|
str | None
|
Optional custom name prefix for tool names (will be sanitized and used as prefix). |
None
|
Source code in mcp_compressor/tools.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | |
configure_server()
async
¶
Configure an MCP server with compressed tool wrappers.
This initializes the tools from the underlying server and registers the wrapper tools (get_tool_schema, invoke_tool, and optionally list_tools) on the provided server.
Returns:
| Type | Description |
|---|---|
None
|
The number of tools registered on the server. |
Source code in mcp_compressor/tools.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | |
get_compression_stats()
async
¶
Get statistics about the compression of tool descriptions.
Returns:
| Type | Description |
|---|---|
dict[str, Any]
|
A dictionary containing statistics about the original and compressed tool description sizes. |
Source code in mcp_compressor/tools.py
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 | |
get_tool_schema(tool_name)
async
¶
Get the input schema for a specific tool from {server_description}.
Available tools are: {tool_descriptions}
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_name
|
str
|
The name of the tool to get the schema for. |
required |
Returns:
| Type | Description |
|---|---|
str
|
The input schema for the specified tool. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the tool name is not found in the server. |
Source code in mcp_compressor/tools.py
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | |
invoke_tool(tool_name, tool_input=None, quiet=False)
async
¶
Invoke a tool from {server_description}.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tool_name
|
str
|
The name of the tool to invoke. |
required |
tool_input
|
dict[str, Any] | None
|
The input to the tool. Schemas can be retrieved using the appropriate |
None
|
quiet
|
bool
|
If true, truncates large tool outputs for successful invocations. This is useful for reducing token consumption when the output is not needed. Full responses will always be returned for tool errors. |
False
|
Returns:
| Type | Description |
|---|---|
Any
|
The output from the tool. |
Source code in mcp_compressor/tools.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 | |
list_tools()
async
¶
List all available tools in {server_description}.
Returns:
| Type | Description |
|---|---|
str
|
A formatted string listing tool names and brief descriptions. |
Source code in mcp_compressor/tools.py
61 62 63 64 65 66 67 | |
on_call_tool(context, call_next)
async
¶
Middleware to clean up tool invocation arguments to invoke_tool and route to the underlying tool.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
context
|
MiddlewareContext[CallToolRequestParams]
|
The middleware context containing the call request. |
required |
call_next
|
CallNext[CallToolRequestParams, ToolResult]
|
The next middleware or handler in the chain. |
required |
Returns:
| Type | Description |
|---|---|
ToolResult
|
The result from calling the underlying tool. |
Source code in mcp_compressor/tools.py
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 | |
on_list_tools(context, call_next)
async
¶
Middleware to inject compressed tool descriptions into the get_tool_schema tool and suppress backend tools.
This updates the get_tool_schema tool's description to include the list of available tools at the appropriate compression level.
Returns:
| Type | Description |
|---|---|
Sequence[Tool]
|
The sequence of tools with updated descriptions. |
Source code in mcp_compressor/tools.py
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | |
ToolNotFoundError
¶
Bases: ValueError
Exception raised when a requested tool is not found in the backend MCP server.
Source code in mcp_compressor/tools.py
25 26 27 28 29 30 | |
sanitize_tool_name(name)
¶
Sanitize a tool name to conform to MCP tool name specifications.
Tool names must: - Be between 1 and 128 characters (inclusive) - Only contain: A-Z, a-z, 0-9, underscore (_), hyphen (-), and dot (.) - Not contain spaces, commas, or other special characters
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The raw tool name to sanitize. |
required |
Returns:
| Type | Description |
|---|---|
str
|
A sanitized tool name conforming to MCP specifications. |
Source code in mcp_compressor/tools.py
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 | |
Types Module¶
Type definitions for MCP Compressor.
This module defines enumerations and type aliases used throughout the MCP Compressor package.
ToolResultBlock = str | Audio | File | Image
module-attribute
¶
Type alias for possible tool result content blocks (text, audio, file, or image).
TransportType = SSETransport | StdioTransport | StreamableHttpTransport
module-attribute
¶
Type alias for supported MCP transport types (SSE, stdio, or streamable HTTP).
CompressionLevel
¶
Bases: str, Enum
Compression levels for tool descriptions in the wrapped MCP server.
Higher compression levels provide less verbose tool descriptions, reducing token usage. Lower compression levels provide more detailed information upfront.
Attributes:
| Name | Type | Description |
|---|---|---|
MAX |
Maximum compression - exposes a list_tools function for viewing all tools. |
|
HIGH |
High compression - only tool names and parameter names, no descriptions. |
|
MEDIUM |
Medium compression - first sentence of tool descriptions only. |
|
LOW |
Low compression - complete tool descriptions and schemas. |
Source code in mcp_compressor/types.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | |
LogLevel
¶
Bases: str, Enum
Logging levels for the MCP Compressor server and wrapped MCP servers.
Source code in mcp_compressor/types.py
13 14 15 16 17 18 19 20 | |