Files
Max Isbey e9afd5473a Replace environment variables with CLI arguments in simple-auth-client
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.
2025-11-13 11:41:48 +00:00
..
2024-11-19 12:37:10 +00:00

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.