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.
clear_oauth(all_tokens=False)
¶
Clear stored OAuth tokens for all servers.
Removes cached OAuth tokens so the next connection will re-authenticate. By default the encryption key is preserved so new tokens are stored under the same key. Pass --all to also remove the key itself.
Source code in mcp_compressor/main.py
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 | |
entrypoint()
¶
Main entrypoint for the mcp-compressor CLI.
Handles the 'clear-oauth' subcommand manually before delegating to the
main Typer app, so that 'mcp-compressor
Source code in mcp_compressor/main.py
604 605 606 607 608 609 610 611 612 613 614 | |
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, toonify=False, cli_mode=False, cli_port=None)
¶
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
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 | |
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. In normal mode it provides two or three public 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)
It also registers a resource (compressor://uncompressed-tools) that exposes the upstream server's
original list_tools payload in machine-readable JSON form.
In CLI mode it provides a single help tool (
Source code in mcp_compressor/tools.py
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 | |
__init__(proxy_server, compression_level, server_name=None, toonify=False, cli_mode=False, cli_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
|
toonify
|
bool
|
Whether to convert JSON text tool outputs to TOON format. |
False
|
cli_mode
|
bool
|
Whether to run in CLI mode (exposes a single help tool instead of wrapper tools). |
False
|
cli_name
|
str | None
|
The CLI script name (used in CLI mode for help text). |
None
|
Source code in mcp_compressor/tools.py
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 | |
configure_server()
async
¶
Configure an MCP server with compressed tool wrappers.
In normal mode, registers get_tool_schema, invoke_tool, and optionally list_tools.
In CLI mode, registers a single
Source code in mcp_compressor/tools.py
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 | |
get_compression_stats()
async
¶
Get statistics about the compression of tool descriptions.
Computes the original backend schema size vs the compressed proxy tool size for all compression levels. Works identically in both normal and CLI mode — the only difference is which tools _get_built_in_tools() returns.
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
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 | |
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
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | |
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
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 | |
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
97 98 99 100 101 102 103 | |
list_uncompressed_tools()
async
¶
Return the upstream server's original list_tools payload as JSON.
This hidden helper is intended for MCP-aware clients that need the backend server's uncompressed tool inventory, including the same descriptions and schemas exposed by the upstream list_tools endpoint.
Returns:
| Type | Description |
|---|---|
str
|
A JSON array matching the upstream server's list_tools response. |
Source code in mcp_compressor/tools.py
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 | |
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
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 | |
on_list_tools(context, call_next)
async
¶
Middleware to inject compressed tool descriptions and suppress backend tools.
In normal mode, updates get_tool_schema's description with the tool list. In CLI mode, updates the help tool's description with the full CLI help text.
Returns:
| Type | Description |
|---|---|
Sequence[Tool]
|
The sequence of built-in wrapper tools with updated descriptions. |
Source code in mcp_compressor/tools.py
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 | |
ToolNotFoundError
¶
Bases: ValueError
Exception raised when a requested tool is not found in the backend MCP server.
Source code in mcp_compressor/tools.py
30 31 32 33 34 35 36 37 | |
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
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | |
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 | |