From 5115c0f7142950a27dabf965f8efc90fff5038b5 Mon Sep 17 00:00:00 2001 From: cjber Date: Wed, 21 May 2025 17:57:09 +0100 Subject: [PATCH] remove engine_cloud_url mentions --- python/thirdweb-mcp/README.md | 3 +-- python/thirdweb-mcp/src/mcp.py | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/python/thirdweb-mcp/README.md b/python/thirdweb-mcp/README.md index 0879ad5..0da334d 100644 --- a/python/thirdweb-mcp/README.md +++ b/python/thirdweb-mcp/README.md @@ -80,7 +80,6 @@ You can also configure the MCP server using environment variables: - `THIRDWEB_ENGINE_URL`: URL endpoint for thirdweb Engine service - `THIRDWEB_ENGINE_AUTH_JWT`: Authentication JWT token for Engine - `THIRDWEB_ENGINE_BACKEND_WALLET_ADDRESS`: Wallet address for Engine backend -- `THIRDWEB_ENGINE_CLOUD_URL`: URL endpoint for EngineCloud service (defaults to https://engine.thirdweb.com/v1) - `THIRDWEB_VAULT_ACCESS_TOKEN`: Vault access token for EngineCloud server wallet operations ### Integration with Claude Desktop @@ -169,4 +168,4 @@ Provides decentralized storage functionality: ## Support -For questions or support, please contact [support@thirdweb.com](mailto:support@thirdweb.com) or visit [thirdweb.com](https://thirdweb.com). \ No newline at end of file +For questions or support, please contact [support@thirdweb.com](mailto:support@thirdweb.com) or visit [thirdweb.com](https://thirdweb.com). diff --git a/python/thirdweb-mcp/src/mcp.py b/python/thirdweb-mcp/src/mcp.py index ff163e2..aba9759 100644 --- a/python/thirdweb-mcp/src/mcp.py +++ b/python/thirdweb-mcp/src/mcp.py @@ -68,7 +68,6 @@ def main( engine_url: str, engine_auth_jwt: str, engine_backend_wallet_address: str | None, - engine_cloud_url: str, vault_access_token: str | None, ): mcp = FastMCP("thirdweb MCP", port=port) @@ -123,4 +122,3 @@ def main( if __name__ == "__main__": main() -