Skip to main content
Glama

Documentation Search MCP Server

publish_to_pypi.shβ€’896 B
#!/bin/bash # Publish to PyPI script set -e # Exit on any error echo "πŸš€ Publishing Documentation Search Enhanced to PyPI..." # Clean previous builds echo "🧹 Cleaning previous builds..." rm -rf dist/ build/ *.egg-info/ # Build the package echo "πŸ“¦ Building package..." uv build # Check the package echo "πŸ” Checking package..." uv run twine check dist/* # Upload to PyPI (requires PYPI_TOKEN environment variable) echo "⬆️ Uploading to PyPI..." if [ -z "$PYPI_TOKEN" ]; then echo "❌ Error: PYPI_TOKEN environment variable not set" echo " Get your token from https://pypi.org/manage/account/token/" echo " Then export PYPI_TOKEN=your_token_here" exit 1 fi uv run twine upload dist/* --username __token__ --password "$PYPI_TOKEN" echo "βœ… Successfully published to PyPI!" echo "πŸ“ Users can now install with: uvx documentation-search-enhanced@latest"

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/anton-prosterity/documentation-search-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server