Skip to content

Commit f14c59a

Browse files
committed
Update CLI description
1 parent db8c0b5 commit f14c59a

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

src/mcpm/cli.py

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,23 +65,24 @@ def main(ctx, help_flag):
6565

6666
# Create bold ASCII art with thicker characters for a more striking appearance
6767
logo = [
68-
" ███╗ ███╗ ██████╗██████╗ ███╗ ███╗ ",
69-
" ████╗ ████║██╔════╝██╔══██╗████╗ ████║ ",
70-
" ██╔████╔██║██║ ██████╔╝██╔████╔██║ ",
71-
" ██║╚██╔╝██║██║ ██╔═══╝ ██║╚██╔╝██║ ",
72-
" ██║ ╚═╝ ██║╚██████╗██║ ██║ ╚═╝ ██║ ",
73-
" ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ",
68+
" ███╗ ███╗ ██████╗██████╗ ███╗ ███╗ ",
69+
" ████╗ ████║██╔════╝██╔══██╗████╗ ████║ ",
70+
" ██╔████╔██║██║ ██████╔╝██╔████╔██║ ",
71+
" ██║╚██╔╝██║██║ ██╔═══╝ ██║╚██╔╝██║ ",
72+
" ██║ ╚═╝ ██║╚██████╗██║ ██║ ╚═╝ ██║ ",
73+
" ╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ",
7474
"",
7575
f"v{__version__}",
7676
"Model Context Protocol Manager",
77-
"Supports Claude Desktop, Windsurf, Cursor, and more",
77+
"Open Source. Forever Free.",
78+
"Built with ❤️ by [bold cyan]Path Integral Institute[/]",
7879
]
7980

8081
# No need to convert to joined string since we're formatting directly in the panel
8182

8283
# Create a panel with styled content
8384
panel = Panel(
84-
f"[bold green]{logo[0]}\n{logo[1]}\n{logo[2]}\n{logo[3]}\n{logo[4]}\n{logo[5]}[/]\n\n[bold yellow]{logo[7]}[/]\n[italic blue]{logo[8]}[/]\n[bold magenta]{logo[9]}[/]",
85+
f"[bold green]{logo[0]}\n{logo[1]}\n{logo[2]}\n{logo[3]}\n{logo[4]}\n{logo[5]}[/]\n\n[bold yellow]{logo[7]}[/] [italic blue]{logo[8]}[/]\n[bold magenta]{logo[9]}[/]\n[bold cyan]{logo[10]}[/]",
8586
border_style="bold cyan",
8687
expand=False,
8788
padding=(0, 2),

0 commit comments

Comments
 (0)