Skip to content

Commit 302d10d

Browse files
committed
Update URLs and references from codealive.dev to codealive.ai
1 parent 1cb6352 commit 302d10d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# CodeAlive MCP: Deep Context for your project (especially for large codebases)
22

3-
[![CodeAlive Logo](https://app.codealive.dev/images/logos/dark-logo.svg)](https://www.codealive.dev/)
3+
[![CodeAlive Logo](https://app.codealive.ai/images/logos/dark-logo.svg)](https://www.codealive.ai/)
44

5-
This MCP (Model Context Protocol) server for the [CodeAlive API](https://www.codealive.dev/) enables AI clients like Claude Desktop, Cursor, Windserf, VS Code (GitHub Copilot), Cline, Roo-Code, and Refact to access CodeAlive's advanced semantic code search and codebase interaction features.
5+
This MCP (Model Context Protocol) server for the [CodeAlive API](https://www.codealive.ai/) enables AI clients like Claude Desktop, Cursor, Windserf, VS Code (GitHub Copilot), Cline, Roo-Code, and Refact to access CodeAlive's advanced semantic code search and codebase interaction features.
66

77
CodeAlive MCP enhances these agents by providing **enriched context** from your project's codebase, enabling more intelligent and efficient interactions.
88

99
## What is CodeAlive?
1010

11-
[CodeAlive](https://www.codealive.dev/) is a platform that analyzes your entire codebase, including documentation and dependencies, to understand its structure, patterns, and logic. It creates a detailed internal map of your repositories or workspaces, enabling fast, reliable, and high-quality answers to questions about your solution for any IT professional.
11+
[CodeAlive](https://www.codealive.ai/) is a platform that analyzes your entire codebase, including documentation and dependencies, to understand its structure, patterns, and logic. It creates a detailed internal map of your repositories or workspaces, enabling fast, reliable, and high-quality answers to questions about your solution for any IT professional.
1212

1313
Using this MCP server allows AI agents (like Claude, Copilot, etc.) to leverage CodeAlive's deep code understanding. This helps agents:
1414

@@ -56,7 +56,7 @@ The MCP server provides the following tools:
5656

5757
### Getting an API Key
5858

59-
1. Log in to your CodeAlive account at [https://app.codealive.dev/](https://app.codealive.dev/).
59+
1. Log in to your CodeAlive account at [https://app.codealive.ai/](https://app.codealive.ai/).
6060
2. Navigate to the **API Keys** section (under Organization).
6161
3. Click on "**+ Create API Key**".
6262
4. Give your key a descriptive name (e.g., "My Local MCP Key") and select the appropriate scope (e.g., "All Data Sources" or select specific ones).
@@ -369,7 +369,7 @@ If the MCP server isn't working correctly with your AI client, follow these step
369369

370370
If problems persist, consider opening an issue on the CodeAlive MCP server repository (if available) with relevant logs and configuration details (masking your API key).
371371

372-
You can also contact our support team at support@codealive.dev for further assistance.
372+
You can also contact our support team at support@codealive.ai for further assistance.
373373

374374
## License
375375

src/codealive_mcp_server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ async def codealive_lifespan(server: FastMCP) -> AsyncIterator[CodeAliveContext]
3737
# Get base URL from environment or use default
3838
if os.environ.get("CODEALIVE_BASE_URL") is None:
3939
print("WARNING: CODEALIVE_BASE_URL not found in environment, using default")
40-
base_url = "https://app.codealive.dev"
40+
base_url = "https://app.codealive.ai"
4141
else:
4242
base_url = os.environ.get("CODEALIVE_BASE_URL")
4343
print(f"DEBUG: Found CODEALIVE_BASE_URL in environment: '{base_url}'")
@@ -646,7 +646,7 @@ async def search_code(
646646

647647
if not base_url:
648648
print("WARNING: CODEALIVE_BASE_URL environment variable is not set, using default.")
649-
print("CodeAlive will connect to the production API at https://app.codealive.dev")
649+
print("CodeAlive will connect to the production API at https://app.codealive.ai")
650650

651651
# Run the server with the selected transport
652652
if args.transport == "sse":

0 commit comments

Comments
 (0)