Skip to content

Commit e9c42e5

Browse files
committed
docs: update llm.txt for AI agents [skip ci]
1 parent 8630fc8 commit e9c42e5

File tree

1 file changed

+35
-19
lines changed

1 file changed

+35
-19
lines changed

llm.txt

Lines changed: 35 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# MCPM (Model Context Protocol Manager) - AI Agent Guide
22

3-
Generated: 2025-09-13 01:49:06 UTC
4-
Version: 2.8.0
3+
Generated: 2025-09-17 14:13:26 UTC
4+
Version: 2.8.1
55

66
## Overview
77

@@ -688,32 +688,48 @@ mcpm profile run web-dev --port 8080 --http
688688

689689
## mcpm run
690690

691-
Execute a server from global configuration over stdio, HTTP, or SSE.
691+
Execute an installed MCP server in stdio (default), HTTP, or SSE mode.
692692

693-
Runs an installed MCP server from the global configuration. By default
694-
runs over stdio for client communication, but can run over HTTP with --http
695-
or over SSE with --sse.
693+
By default, servers run over **stdio** for direct client communication.
696694

697-
Examples:
698-
mcpm run mcp-server-browse # Run over stdio (default)
699-
mcpm run --http mcp-server-browse # Run over HTTP on 127.0.0.1:6276
700-
mcpm run --sse mcp-server-browse # Run over SSE on 127.0.0.1:6276
701-
mcpm run --http --port 9000 filesystem # Run over HTTP on 127.0.0.1:9000
702-
mcpm run --sse --port 9000 filesystem # Run over SSE on 127.0.0.1:9000
703-
mcpm run --http --host 0.0.0.0 filesystem # Run over HTTP on 0.0.0.0:6276
704-
705-
Note: stdio mode is typically used in MCP client configurations:
695+
**Examples:**
696+
697+
STDIO Mode (default):
698+
699+

700+
mcpm run server-name
701+
702+
HTTP Mode:
703+
704+

705+
mcpm run --http server-name
706+
mcpm run --http --port 9000 server-name
707+
mcpm run --http --host 0.0.0.0 server-name
708+
709+
SSE Mode:
710+
711+

712+
mcpm run --sse server-name
713+
mcpm run --sse --port 9000 server-name
714+
mcpm run --sse --host 0.0.0.0 server-name
715+
716+
Client Config Example:
706717
{"command": ["mcpm", "run", "mcp-server-browse"]}
718+
719+
**Tips:**
720+
• Port defaults to **6276**, auto-finds if busy
721+
• Host defaults to **127.0.0.1**
722+
• Use `mcpm ls` to see installed servers
707723

708724

709725
**Parameters:**
710726

711727
- `server_name` (REQUIRED):
712728

713-
- `--http`: Run server over HTTP instead of stdio (flag)
714-
- `--sse`: Run server over SSE instead of stdio (flag)
715-
- `--port`: Port for HTTP / SSE mode (default: 6276) (default: 6276)
716-
- `--host`: Host address for HTTP / SSE mode (default: 127.0.0.1) (default: 127.0.0.1)
729+
- `--http`: Run server in HTTP mode (mutually exclusive with --sse) (flag)
730+
- `--sse`: Run server in SSE mode (mutually exclusive with --http) (flag)
731+
- `--port`: Port for HTTP/SSE mode (default: 6276, auto-finds available) (default: 6276)
732+
- `--host`: Host for HTTP/SSE mode (use 0.0.0.0 for all interfaces) (default: 127.0.0.1)
717733
- `-h`, `--help`: Show this message and exit. (flag)
718734

719735
**Examples:**

0 commit comments

Comments
 (0)