Skip to content

Commit d325377

Browse files
Merge pull request #5 from Klarity-AI/rr/update-mcp-endpoint
chore: update mcp endpoint
2 parents 7a557ae + fa18a96 commit d325377

9 files changed

Lines changed: 11 additions & 11 deletions

File tree

.mcp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"mcpServers": {
33
"klarity": {
44
"type": "http",
5-
"url": "https://architect-v2-api.klarity.ai/mcp"
5+
"url": "https://api.klarity.ai/mcp"
66
}
77
}
88
}

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Copyright (c) 2026 Klarity Intelligence, Inc.
44
This plugin shim is licensed under the Apache License, Version 2.0.
55

66
The Klarity Architect service this plugin connects to
7-
(https://architect-v2-api.klarity.ai/mcp) is a commercial service.
7+
(https://api.klarity.ai/mcp) is a commercial service.
88
Use of the service is subject to:
99
- Terms of Service: https://www.klarity.ai/terms-of-service-2025
1010
- Privacy Policy: https://www.klarity.ai/product-privacy-policy

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This repository is the canonical public surface for two install paths:
2020
## What it does
2121

2222
The plugin connects your AI assistant to the Klarity MCP server at
23-
`https://architect-v2-api.klarity.ai/mcp`. Tools the assistant gets access to
23+
`https://api.klarity.ai/mcp`. Tools the assistant gets access to
2424
include `search`, `fetch`, process-hierarchy navigation, evidence retrieval, and
2525
Context Graph traversal. The full skill prompt lives at
2626
[`skills/klarity-process-context-graph/SKILL.md`](./skills/klarity-process-context-graph/SKILL.md).

docs/install/claude-code.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Use this for long-running background agents. Generate an API key from `Settings
3232

3333
```bash
3434
claude mcp add --transport http klarity \
35-
https://architect-v2-api.klarity.ai/mcp \
35+
https://api.klarity.ai/mcp \
3636
--header "Authorization: Bearer <YOUR_API_KEY>"
3737
```
3838

docs/install/codex.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Use this for long-running background agents. Generate an API key from `Settings
3636

3737
```toml
3838
[mcp_servers.klarity]
39-
url = "https://architect-v2-api.klarity.ai/mcp"
39+
url = "https://api.klarity.ai/mcp"
4040
bearer_token_env_var = "KLARITY_MCP_TOKEN"
4141
```
4242

docs/install/cursor.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ In Cursor, open **Settings → Tools & MCP → New MCP Server** (or edit `.curso
1515
"mcpServers": {
1616
"klarity": {
1717
"type": "http",
18-
"url": "https://architect-v2-api.klarity.ai/mcp"
18+
"url": "https://api.klarity.ai/mcp"
1919
}
2020
}
2121
}
@@ -32,7 +32,7 @@ Use this for long-running background agents. Generate an API key from `Settings
3232
"mcpServers": {
3333
"klarity": {
3434
"type": "http",
35-
"url": "https://architect-v2-api.klarity.ai/mcp",
35+
"url": "https://api.klarity.ai/mcp",
3636
"headers": {
3737
"Authorization": "Bearer <YOUR_API_KEY>"
3838
}

docs/security.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The MCP runs on the same infrastructure that powers the Klarity Architect web ap
2626
| Property | Value |
2727
|---|---|
2828
| **Transport** | HTTPS-based Model Context Protocol over TLS |
29-
| **Endpoint** | `https://architect-v2-api.klarity.ai/mcp` |
29+
| **Endpoint** | `https://api.klarity.ai/mcp` |
3030
| **Backend** | Same API and data store that serves the Klarity Architect web application |
3131

3232
Every MCP request flows into the same backend as a request from the web app. There is no shortcut path that bypasses normal validation or access control.

gemini-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Bring your organization's processes and operational knowledge into your AI assistant. The Klarity MCP connects to your Klarity workspace so you can query your organization's processes, explore the process index knowledge graph linking processes to systems and teams, and ground answers in how your business actually runs \u2014 not generic guesses.",
55
"mcpServers": {
66
"klarity": {
7-
"url": "https://architect-v2-api.klarity.ai/mcp"
7+
"url": "https://api.klarity.ai/mcp"
88
}
99
},
1010
"contextFileName": "skills/klarity-process-context-graph/SKILL.md"

klarity_mcp/metadata.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ class KlarityMCPMetadata:
6060
category="Business",
6161
brand_color="#FF6C14",
6262
mcp_server_key="klarity",
63-
mcp_url="https://architect-v2-api.klarity.ai/mcp",
64-
oauth_resource="https://architect-v2-api.klarity.ai",
63+
mcp_url="https://api.klarity.ai/mcp",
64+
oauth_resource="https://api.klarity.ai",
6565
plugin_description=_KLARITY_MCP_DEFAULT_DESCRIPTION,
6666
app_description=_KLARITY_MCP_DEFAULT_DESCRIPTION,
6767
interface_short_description="Explore your org's processes",

0 commit comments

Comments
 (0)