architectgbt-mcp 0.2.3 → 0.2.4
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 +75 -50
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,9 +28,9 @@ Get instant AI model recommendations for your projects directly in Cursor IDE or
|
|
|
28
28
|
- **Complete examples** with installation, env setup, and usage
|
|
29
29
|
- **Best practices** including error handling and streaming
|
|
30
30
|
|
|
31
|
-
##
|
|
31
|
+
## Installation
|
|
32
32
|
|
|
33
|
-
###
|
|
33
|
+
### Cursor IDE
|
|
34
34
|
|
|
35
35
|
1. Create `.cursor/mcp.json` in your project:
|
|
36
36
|
```json
|
|
@@ -51,6 +51,79 @@ Get instant AI model recommendations for your projects directly in Cursor IDE or
|
|
|
51
51
|
- "Show me all available AI models"
|
|
52
52
|
- "Give me Claude Sonnet code in TypeScript"
|
|
53
53
|
|
|
54
|
+
### Claude Desktop
|
|
55
|
+
|
|
56
|
+
**macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
57
|
+
|
|
58
|
+
**Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
|
|
59
|
+
|
|
60
|
+
```json
|
|
61
|
+
{
|
|
62
|
+
"mcpServers": {
|
|
63
|
+
"architectgbt": {
|
|
64
|
+
"command": "npx",
|
|
65
|
+
"args": ["-y", "architectgbt-mcp@latest"]
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### VS Code (with Continue or other MCP extensions)
|
|
72
|
+
|
|
73
|
+
Install an MCP-compatible extension, then add to settings:
|
|
74
|
+
|
|
75
|
+
```json
|
|
76
|
+
{
|
|
77
|
+
"mcp.servers": {
|
|
78
|
+
"architectgbt": {
|
|
79
|
+
"command": "npx",
|
|
80
|
+
"args": ["-y", "architectgbt-mcp@latest"]
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### Zed Editor
|
|
87
|
+
|
|
88
|
+
Add to `~/.config/zed/settings.json`:
|
|
89
|
+
|
|
90
|
+
```json
|
|
91
|
+
{
|
|
92
|
+
"context_servers": {
|
|
93
|
+
"architectgbt": {
|
|
94
|
+
"command": "npx",
|
|
95
|
+
"args": ["-y", "architectgbt-mcp@latest"]
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
### Any MCP-Compatible Client
|
|
102
|
+
|
|
103
|
+
This server follows the [Model Context Protocol](https://modelcontextprotocol.io) standard and works with any MCP-compatible client. Run it via stdio:
|
|
104
|
+
|
|
105
|
+
```bash
|
|
106
|
+
npx architectgbt-mcp@latest
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
### With API Key (Unlimited Access)
|
|
110
|
+
|
|
111
|
+
Add your API key to any config above:
|
|
112
|
+
|
|
113
|
+
```json
|
|
114
|
+
{
|
|
115
|
+
"mcpServers": {
|
|
116
|
+
"architectgbt": {
|
|
117
|
+
"command": "npx",
|
|
118
|
+
"args": ["-y", "architectgbt-mcp@latest"],
|
|
119
|
+
"env": {
|
|
120
|
+
"ARCHITECTGBT_API_KEY": "agbt_your_key_here"
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
```
|
|
126
|
+
|
|
54
127
|
## Pricing
|
|
55
128
|
|
|
56
129
|
| Tier | Recommendations | Cost | API Key |
|
|
@@ -112,56 +185,8 @@ Perfect for customer support with fast responses, strong reasoning...
|
|
|
112
185
|
- `budget` (optional): "low" | "medium" | "high" | "unlimited"
|
|
113
186
|
- `priority` (optional): "cost" | "speed" | "quality" | "balanced"
|
|
114
187
|
|
|
115
|
-
### `get_code_template`
|
|
116
|
-
Get production-ready code templates.
|
|
117
|
-
|
|
118
|
-
**Parameters:**
|
|
119
|
-
- `provider` (required): "anthropic" | "openai" | "google"
|
|
120
188
|
- `language` (required): "typescript" | "python"
|
|
121
189
|
|
|
122
|
-
## Installation Options
|
|
123
|
-
|
|
124
|
-
### Option 1: Cursor IDE (Recommended)
|
|
125
|
-
|
|
126
|
-
See Quick Start above.
|
|
127
|
-
|
|
128
|
-
### Option 2: Claude Desktop
|
|
129
|
-
|
|
130
|
-
**macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
131
|
-
**Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
|
|
132
|
-
|
|
133
|
-
```json
|
|
134
|
-
{
|
|
135
|
-
"mcpServers": {
|
|
136
|
-
"architectgbt": {
|
|
137
|
-
"command": "npx",
|
|
138
|
-
"args": ["-y", "architectgbt-mcp@latest"],
|
|
139
|
-
"env": {
|
|
140
|
-
"ARCHITECTGBT_API_KEY": "your_key_here"
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
```
|
|
146
|
-
|
|
147
|
-
### Option 3: Unlimited Access (API Key)
|
|
148
|
-
|
|
149
|
-
Add your API key to `.cursor/mcp.json`:
|
|
150
|
-
|
|
151
|
-
```json
|
|
152
|
-
{
|
|
153
|
-
"mcpServers": {
|
|
154
|
-
"architectgbt": {
|
|
155
|
-
"command": "npx",
|
|
156
|
-
"args": ["-y", "architectgbt-mcp@latest"],
|
|
157
|
-
"env": {
|
|
158
|
-
"ARCHITECTGBT_API_KEY": "agbt_your_key_here"
|
|
159
|
-
}
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
```
|
|
164
|
-
|
|
165
190
|
## Environment Variables
|
|
166
191
|
|
|
167
192
|
- `ARCHITECTGBT_API_KEY` - Your API key for unlimited access (optional)
|