We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10820a0 commit 5a91b4aCopy full SHA for 5a91b4a
mcpdoc/cli.py
@@ -230,14 +230,15 @@ def main() -> None:
230
timeout=args.timeout,
231
settings=settings,
232
)
233
- print()
234
- print(SPLASH)
235
236
237
- print(
238
- f"Launching MCPDOC server with {len(doc_sources)} doc sources",
239
- file=sys.stderr,
240
- )
+ if args.transport == "sse":
+ print()
+ print(SPLASH)
+
+ print(
+ f"Launching MCPDOC server with {len(doc_sources)} doc sources",
241
+ )
242
243
# Pass transport-specific options
244
server.run(transport=args.transport)
0 commit comments