@@ -15,7 +15,7 @@ Runloop provides two transport modes for the MCP server:
1515For local AI assistants like Claude Desktop:
1616
1717``` bash
18- rln mcp start
18+ rli mcp start
1919```
2020
2121The server runs on stdio and communicates using the MCP protocol.
@@ -25,13 +25,13 @@ The server runs on stdio and communicates using the MCP protocol.
2525For web-based AI assistants or remote access:
2626
2727``` bash
28- rln mcp start --http
28+ rli mcp start --http
2929```
3030
3131Or specify a custom port:
3232
3333``` bash
34- rln mcp start --http --port 8080
34+ rli mcp start --http --port 8080
3535```
3636
3737The HTTP server runs on ` http://localhost:3000 ` by default and uses Server-Sent Events (SSE) for communication.
@@ -83,7 +83,7 @@ The MCP server exposes the following tools:
8383The easiest way to set up with Claude Desktop:
8484
8585``` bash
86- rln mcp install
86+ rli mcp install
8787```
8888
8989This automatically adds the configuration to your Claude Desktop config file and preserves any existing MCP servers.
@@ -100,7 +100,7 @@ If you prefer to configure manually, add this to your Claude configuration file:
100100{
101101 "mcpServers" : {
102102 "runloop" : {
103- "command" : " rln " ,
103+ "command" : " rli " ,
104104 "args" : [" mcp" , " start" ],
105105 "env" : {
106106 "RUNLOOP_ENV" : " prod"
@@ -134,7 +134,7 @@ Example for Claude Code or other MCP clients supporting HTTP:
134134The MCP server uses the same API key configuration as the CLI. Make sure you've authenticated first:
135135
136136``` bash
137- rln auth
137+ rli auth
138138```
139139
140140The server will automatically use your stored API credentials.
@@ -154,32 +154,32 @@ Claude will use the MCP tools to interact with your Runloop account and provide
154154## Environment Variables
155155
156156- ` RUNLOOP_ENV ` - Set to ` dev ` for development environment, ` prod ` (or leave unset) for production
157- - API key is read from the CLI configuration (~ /.config/rln /config.json)
157+ - API key is read from the CLI configuration (~ /.config/rli /config.json)
158158
159159## Troubleshooting
160160
161161### Stdio Server
162162
163163If the stdio MCP server isn't working:
164164
165- 1 . Make sure you've run ` rln auth` to configure your API key
166- 2 . Check that the ` rln ` command is in your PATH
165+ 1 . Make sure you've run ` rli auth` to configure your API key
166+ 2 . Check that the ` rli ` command is in your PATH
1671673 . Restart Claude Desktop after updating the configuration
1681684 . Check Claude's logs for any error messages
169169
170170### HTTP Server
171171
172172If the HTTP MCP server isn't working:
173173
174- 1 . Make sure you've run ` rln auth` to configure your API key
174+ 1 . Make sure you've run ` rli auth` to configure your API key
1751752 . Check that the port isn't already in use
1761763 . Verify the server is running: ` curl http://localhost:3000/sse `
1771774 . Check your firewall settings if connecting remotely
1781785 . Look at the server logs for error messages
179179
180180### Common Issues
181181
182- - ** "API key not configured"** : Run ` rln auth` to set up your credentials
182+ - ** "API key not configured"** : Run ` rli auth` to set up your credentials
183183- ** Port already in use** : Stop other services or use a different port with ` --port `
184184- ** Connection refused** : Make sure the server is running and accessible
185185
0 commit comments