Mention Roo Code alongside with Cline (#48)

This commit is contained in:
cannuri 2025-03-09 13:06:49 +01:00 committed by GitHub
parent 8e14b47fa1
commit fc3c77e943
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 15 additions and 15 deletions

View File

@ -194,7 +194,7 @@ The Docker implementation consists of two containers:
- Implements the Model Context Protocol for AI IDE integration
- Built from the mcp/Dockerfile
- Communicates with the main container's Graph Service
- Provides a standardized interface for AI IDEs like Windsurf, Cursor, and Cline
- Provides a standardized interface for AI IDEs like Windsurf, Cursor, Cline, and Roo Code
When running with Docker, the `run_docker.py` script automates building and starting both containers with the proper configuration.

View File

@ -759,7 +759,7 @@ def future_enhancements_tab():
- Integrate seamlessly with existing development workflows
""")
st.warning("The Model Context Protocol (MCP) is an emerging standard for AI assistant integration with IDEs like Windsurf, Cursor, and Cline.")
st.warning("The Model Context Protocol (MCP) is an emerging standard for AI assistant integration with IDEs like Windsurf, Cursor, Cline, and Roo Code.")
# Other Frameworks
with st.expander("Other Frameworks besides Pydantic AI"):

View File

@ -129,7 +129,7 @@ The Agent Service tab allows you to manage the agent service:
The MCP tab simplifies the process of configuring MCP for AI IDEs:
- Select your IDE (Windsurf, Cursor, or Cline)
- Select your IDE (Windsurf, Cursor, Cline, or Roo Code)
- Generate configuration commands or JSON
- Copy configuration to clipboard
- Get step-by-step instructions for your specific IDE
@ -177,7 +177,7 @@ The Docker implementation consists of two containers:
- Implements the Model Context Protocol for AI IDE integration
- Built from the mcp/Dockerfile
- Communicates with the main container's Graph Service
- Provides a standardized interface for AI IDEs like Windsurf, Cursor, and Cline
- Provides a standardized interface for AI IDEs like Windsurf, Cursor, Cline and Roo Code
When running with Docker, the `run_docker.py` script automates building and starting both containers with the proper configuration.

View File

@ -364,12 +364,12 @@ def mcp_tab():
""")
elif selected_ide == "Cline":
st.markdown("""
#### How to use in Cline:
1. From the Cline extension, click the "MCP Server" tab
#### How to use in Cline or Roo Code:
1. From the Cline/Roo Code extension, click the "MCP Server" tab
2. Click the "Edit MCP Settings" button
3. The MCP settings file should be displayed in a tab in VS Code
4. Paste the JSON from your preferred configuration tab above
5. Cline will automatically detect and start the MCP server
5. Cline/Roo Code will automatically detect and start the MCP server
""")
async def chat_tab():
@ -511,7 +511,7 @@ def intro_tab():
For integration with AI IDEs:
1. Go to the **MCP** tab
2. Select your IDE (Windsurf, Cursor, or Cline)
2. Select your IDE (Windsurf, Cursor, Cline, or Roo Code)
3. Follow the instructions to configure your IDE
This enables you to use Archon directly from your AI-powered IDE.

View File

@ -299,7 +299,7 @@ def mcp_tab():
with col2:
cursor_button = st.button("Cursor", use_container_width=True, key="cursor_button")
with col3:
cline_button = st.button("Cline", use_container_width=True, key="cline_button")
cline_button = st.button("Cline/Roo Code", use_container_width=True, key="cline_button")
# Initialize session state for selected IDE if not present
if "selected_ide" not in st.session_state:
@ -311,7 +311,7 @@ def mcp_tab():
elif cursor_button:
st.session_state.selected_ide = "Cursor"
elif cline_button:
st.session_state.selected_ide = "Cline"
st.session_state.selected_ide = "Cline/Roo Code"
# Display configuration if an IDE is selected
if st.session_state.selected_ide:
@ -362,14 +362,14 @@ def mcp_tab():
4. Type: command (equivalent to stdio)
5. Command: Paste the command from your preferred configuration tab above
""")
elif selected_ide == "Cline":
elif selected_ide == "Cline/Roo Code":
st.markdown("""
#### How to use in Cline:
1. From the Cline extension, click the "MCP Server" tab
#### How to use in Cline or Roo Code:
1. From the Cline/Roo Code extension, click the "MCP Server" tab
2. Click the "Edit MCP Settings" button
3. The MCP settings file should be displayed in a tab in VS Code
4. Paste the JSON from your preferred configuration tab above
5. Cline will automatically detect and start the MCP server
5. Cline/Roo Code will automatically detect and start the MCP server
""")
async def chat_tab():
@ -511,7 +511,7 @@ def intro_tab():
For integration with AI IDEs:
1. Go to the **MCP** tab
2. Select your IDE (Windsurf, Cursor, or Cline)
2. Select your IDE (Windsurf, Cursor, or Cline/Roo Code)
3. Follow the instructions to configure your IDE
This enables you to use Archon directly from your AI-powered IDE.