Skip to content

tigermcp 0.1.7 fails to start with mcp 2.0.0 #88

Description

@litang9

Summary

tigermcp 0.1.7 declares mcp[cli]>=1.13.0 without an upper bound. Now that mcp 2.0.0 is available, a fresh dependency resolution installs MCP 2.0 and TigerMCP fails during startup.

Reproduction

uv run --isolated --with "tigermcp==0.1.7" --with "mcp==2.0.0" \
python -c "from tigermcp.server import main"

Actual behavior

ModuleNotFoundError: No module named "mcp.server.fastmcp"

tigermcp/server.py currently imports:

frommcp.server.fastmcpimportFastMCP

That module is no longer present in mcp 2.0.0, so MCP clients only observe the TigerMCP subprocess closing during initialization.

Expected behavior

Installing and running the published tigermcp package should resolve a compatible MCP SDK version and start successfully.

Suggested fix

Until TigerMCP is migrated to the MCP 2.x server API, constrain the dependency in tigeropen/examples/ai/mcp_server/setup.py:

"mcp[cli]>=1.13.0,<2",

A packaging/startup smoke test using a fresh dependency resolution would also prevent this regression.

Verified workaround

TigerMCP starts successfully when MCP is constrained to 1.x:

uvx --python 3.13 --with "mcp>=1.13,<2" tigermcp

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions