e9afd5473a
The simple-auth-client example previously used environment variables (MCP_SERVER_PORT and MCP_TRANSPORT_TYPE) to configure the server URL and transport type. This approach was inflexible and couldn't handle arbitrary server URLs. This change replaces the environment variables with command-line arguments using argparse: - --url: Specifies the full URL of the MCP server - --transport: Specifies the transport type (streamable-http or sse) Benefits: - Users can now specify any server URL, not just localhost ports - More intuitive and discoverable interface with --help - Better follows CLI conventions All documentation (both client and server READMEs) has been updated to reflect the new command-line interface.
Python SDK Examples
This folders aims to provide simple examples of using the Python SDK. Please refer to the servers repository for real-world servers.