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
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 | |
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
1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 | |
main(ctx, 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.ERROR, toonify=False, cli_mode=False, just_bash=False, cli_port=None, include_tools=None, exclude_tools=None, version=False)
¶
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
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 | |
Tools Module¶
Tool compression helpers built on FastMCP v3 transforms.
This module provides a transform-first implementation that replaces the visible tool catalog with a compressed wrapper interface while keeping backend tools available for passthrough access.
CompressedTools
¶
Bases: CatalogTransform
Transform that replaces the tool catalog with compressed wrapper tools.
In normal mode it exposes 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 exposes a resource (compressor://uncompressed-tools) that returns the upstream server's original
list_tools payload in machine-readable JSON form.
In CLI mode it exposes a single help tool (
Source code in mcp_compressor/tools.py
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 | |
invoke_tool_names
property
¶
All invoke_tool wrapper names, including the hidden alias.
configure_server()
async
¶
Attach the transform and any small compatibility middleware to the server.
Source code in mcp_compressor/tools.py
153 154 155 156 157 158 | |
get_backend_tools()
async
¶
Return the current backend tool catalog keyed by name.
Source code in mcp_compressor/tools.py
293 294 295 296 | |
get_compression_stats()
async
¶
Get statistics about the compression of tool descriptions.
Source code in mcp_compressor/tools.py
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 | |
get_resource(uri, call_next, *, version=None)
async
¶
Return the synthetic resource when requested, else delegate.
Source code in mcp_compressor/tools.py
219 220 221 222 223 224 225 | |
get_tool(name, call_next, *, version=None)
async
¶
Return synthetic wrapper tools and delegate backend tool lookups unchanged.
Source code in mcp_compressor/tools.py
201 202 203 204 205 206 207 208 209 210 211 | |
get_tool_schema(tool_name, ctx=None)
async
¶
Get the input schema for a specific tool from {server_description}.
Source code in mcp_compressor/tools.py
235 236 237 238 239 240 241 242 | |
invalidate_tool_cache()
¶
Invalidate the cached backend tool catalog.
The next call to any method that needs the backend tool list will re-fetch it from the backend server.
Source code in mcp_compressor/tools.py
359 360 361 362 363 364 365 | |
invoke_tool(tool_name, tool_input=None, quiet=False, ctx=None)
async
¶
Invoke a backend tool from the compressed catalog.
Source code in mcp_compressor/tools.py
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 | |
list_tools_tool(ctx=None)
async
¶
List all available tools in {server_description}.
Source code in mcp_compressor/tools.py
227 228 229 230 231 232 233 | |
list_uncompressed_tools(ctx=None)
async
¶
Return the upstream server's original list_tools payload as JSON.
Source code in mcp_compressor/tools.py
285 286 287 288 289 290 291 | |
should_toonify_tool(tool_name)
¶
Return whether direct calls to a tool should be toonified.
Source code in mcp_compressor/tools.py
139 140 141 142 143 | |
transform_resources(resources)
async
¶
Append the synthetic uncompressed-tools resource in normal mode.
Source code in mcp_compressor/tools.py
213 214 215 216 217 | |
transform_tools(tools)
async
¶
Replace the visible tool catalog with compressed wrapper tools.
Source code in mcp_compressor/tools.py
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | |
InvokeToolCompatibilityMiddleware
¶
Bases: Middleware
Small compatibility shim for flattened invoke_tool arguments and direct toonify.
Source code in mcp_compressor/tools.py
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 | |
ToolNotFoundError
¶
Bases: ValueError
Exception raised when a requested tool is not found in the backend MCP server.
Source code in mcp_compressor/tools.py
39 40 41 42 43 44 45 46 | |
sanitize_tool_name(name)
¶
Sanitize a tool name to conform to MCP tool name specifications.
Source code in mcp_compressor/tools.py
468 469 470 471 472 473 | |
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 = ClientTransport
module-attribute
¶
Type alias for supported MCP client transports.
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 | |