graphiti/mcp_server/PUBLISHING_CHECKLIST.md
Lars Varming eddeda67b3 Fix graphiti-mcp-varming package for PyPI publication
MCP Server Package Fixes:
- Add build-system configuration to pyproject.toml
- Fix module imports to use relative imports for proper packaging
- Fix TypedDict import for Python 3.10 compatibility
- Remove unsupported MCP SDK parameters (tags, meta)
- Add GitHub Actions workflow for automatic PyPI publishing
- Add PyPI publishing documentation and checklist

Code Quality Improvements:
- Fix code formatting in graphiti_core (line length, whitespace)

This prepares v1.0.0 for publication to PyPI, enabling users to install
with: uvx graphiti-mcp-varming

🤖 Generated with Claude Code (https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-09 19:32:13 +01:00

1.7 KiB

Publishing Checklist

Use this checklist for your first PyPI publication.

Pre-Publishing Setup

Publishing Steps

  • Commit all changes

    git add .
    git commit -m "Prepare graphiti-mcp-varming v1.0.0 for PyPI"
    git push
    
  • Create and push release tag

    git tag mcp-v1.0.0
    git push origin mcp-v1.0.0
    
  • Monitor GitHub Actions workflow

Post-Publishing Verification

  • Check PyPI page

  • Test installation

    uvx graphiti-mcp-varming --help
    
  • Test in LibreChat (if applicable)

    • Update librechat.yaml with uvx graphiti-mcp-varming
    • Restart LibreChat
    • Verify tools appear in UI

If Something Goes Wrong

Common issues and solutions in PYPI_PUBLISHING.md

  • Authentication error → Check token in GitHub secrets
  • File already exists → Version already published, bump version number
  • Workflow doesn't trigger → Check tag format is mcp-v*.*.*
  • Package not found → Wait a few minutes for PyPI to propagate

After first successful publish, this checklist can be deleted!