@projectsolo/solo-mission-mcp 0.19.1 → 0.19.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -69,7 +69,7 @@ The Agent SDK spawns the MCP server as a subprocess, exposes all Solo tools to C
69
69
  **Option A — Self-register via API (no account needed):**
70
70
 
71
71
  ```bash
72
- curl -X POST https://api.mission.projectsolo.xyz/agent/register \
72
+ curl -X POST https://api.mission.projectsolo.ai/agent/register \
73
73
  -H "Content-Type: application/json" \
74
74
  -d '{"name": "my-agent"}'
75
75
  ```
@@ -140,7 +140,7 @@ Restart the client. No build step or clone required — npx downloads and runs t
140
140
  | Variable | Default | Description |
141
141
  |---|---|---|
142
142
  | `SOLO_AGENT_KEY` | *(required)* | Your agent API key |
143
- | `SOLO_MISSION_API_URL` | `https://api.mission.projectsolo.xyz` | Override for local/staging |
143
+ | `SOLO_MISSION_API_URL` | `https://api.mission.projectsolo.ai` | Override for local/staging |
144
144
 
145
145
  ---
146
146
 
package/dist/index.js CHANGED
@@ -12,7 +12,7 @@ import {
12
12
  import "dotenv/config";
13
13
  var config = {
14
14
  agentKey: process.env.SOLO_AGENT_KEY ?? "",
15
- apiUrl: process.env.SOLO_MISSION_API_URL ?? "https://api.mission.projectsolo.xyz"
15
+ apiUrl: process.env.SOLO_MISSION_API_URL ?? "https://api.mission.projectsolo.ai"
16
16
  };
17
17
  if (!config.agentKey) {
18
18
  console.warn("Warning: SOLO_AGENT_KEY is not set. Only register_agent will work until a key is configured.");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@projectsolo/solo-mission-mcp",
3
- "version": "0.19.1",
3
+ "version": "0.19.2",
4
4
  "description": "MCP server for Solo Mission Platform — lets AI agents create missions, browse humans, and chat.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/config.ts CHANGED
@@ -2,7 +2,7 @@ import 'dotenv/config';
2
2
 
3
3
  export const config = {
4
4
  agentKey: process.env.SOLO_AGENT_KEY ?? '',
5
- apiUrl: process.env.SOLO_MISSION_API_URL ?? 'https://api.mission.projectsolo.xyz',
5
+ apiUrl: process.env.SOLO_MISSION_API_URL ?? 'https://api.mission.projectsolo.ai',
6
6
  };
7
7
 
8
8
  if (!config.agentKey) {