707-command-center-mcp 1.0.0
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 +65 -0
- package/dist/server.js +21885 -0
- package/package.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# 707 Command Center MCP
|
|
2
|
+
|
|
3
|
+
MCP server for the 707 Command Center — provides deal management, valuation, mineral data, and production tools for Claude Code and Claude Desktop.
|
|
4
|
+
|
|
5
|
+
Skills (valuation workflows, deal intake, NM pooling, etc.) are bundled and auto-synced to `~/.claude/skills/` on startup.
|
|
6
|
+
|
|
7
|
+
## Setup
|
|
8
|
+
|
|
9
|
+
You need an API key from your team admin. Then add this config:
|
|
10
|
+
|
|
11
|
+
### Claude Code
|
|
12
|
+
|
|
13
|
+
Create `.mcp.json` in your working directory:
|
|
14
|
+
|
|
15
|
+
```json
|
|
16
|
+
{
|
|
17
|
+
"mcpServers": {
|
|
18
|
+
"707-command-center": {
|
|
19
|
+
"command": "npx",
|
|
20
|
+
"args": ["-y", "707-command-center-mcp"],
|
|
21
|
+
"env": {
|
|
22
|
+
"CC_API_KEY": "<your-api-key>",
|
|
23
|
+
"CC_BASE_URL": "https://cm8rktcepw.us-east-2.awsapprunner.com"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### Claude Desktop
|
|
31
|
+
|
|
32
|
+
Add to your `claude_desktop_config.json`:
|
|
33
|
+
|
|
34
|
+
```json
|
|
35
|
+
{
|
|
36
|
+
"mcpServers": {
|
|
37
|
+
"707-command-center": {
|
|
38
|
+
"command": "npx",
|
|
39
|
+
"args": ["-y", "707-command-center-mcp"],
|
|
40
|
+
"env": {
|
|
41
|
+
"CC_API_KEY": "<your-api-key>",
|
|
42
|
+
"CC_BASE_URL": "https://cm8rktcepw.us-east-2.awsapprunner.com"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Available Tools
|
|
50
|
+
|
|
51
|
+
| Tool | Description |
|
|
52
|
+
|------|-------------|
|
|
53
|
+
| `health_check` | API + DB status |
|
|
54
|
+
| `deals` | List, get, update, HubSpot sync, allocation tables |
|
|
55
|
+
| `lookup` | Wellbore, RRC production/disposition, CONG data, pricing |
|
|
56
|
+
| `production` | Production cache, manual entries |
|
|
57
|
+
| `valuation` | Prelim, refine, validate stubs, finalize |
|
|
58
|
+
| `energylink` | Revenue statement sync and queries |
|
|
59
|
+
| `transfers` | Operator/CAD transfers, contacts, activities |
|
|
60
|
+
| `inventory` | Owned mineral inventory, master leases, tracts |
|
|
61
|
+
| `mineralholders` | Owner lookups, name/address search, import/enrich |
|
|
62
|
+
|
|
63
|
+
## Updates
|
|
64
|
+
|
|
65
|
+
The package auto-updates — `npx -y` fetches the latest version each session. Skills are synced to `~/.claude/skills/` on every startup.
|