Skip to content

Commit bac19bc

Browse files
chore: version packages (#790)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## [email protected] ### Minor Changes - 31e555b: feat: Add gram install command for MCP server configuration & support common clients **Automatic Configuration** ```bash gram install claude-code --toolset speakeasy-admin ``` - Fetches toolset metadata from Gram API - Automatically derives MCP URL from organization, project & environment or custom MCP slug - Intelligently determines authentication headers and environment variables from toolset security config - Uses toolset name as the MCP server name **Manual Configuration** ```bash gram install claude-code --mcp-url https://mcp.getgram.ai/org/project/environment --api-key your-api-key --header-name Custom-Auth-Header --env-var MY_API_KEY ``` - Supports custom MCP URLs for non-Gram servers - Configurable authentication headers - Environment variable substitution for secure API key storage - Automatic detection of locally set environment variables (uses actual value if available) ## [email protected] ### Patch Changes - faef164: opens up logs to free tier - 29aee79: fixes potentially duplicate env vars from functions in the UX and MCP config ## [email protected] ### Patch Changes - 31e555b: feat: Add gram install command for MCP server configuration & support common clients **Automatic Configuration** ```bash gram install claude-code --toolset speakeasy-admin ``` - Fetches toolset metadata from Gram API - Automatically derives MCP URL from organization, project & environment or custom MCP slug - Intelligently determines authentication headers and environment variables from toolset security config - Uses toolset name as the MCP server name **Manual Configuration** ```bash gram install claude-code --mcp-url https://mcp.getgram.ai/org/project/environment --api-key your-api-key --header-name Custom-Auth-Header --env-var MY_API_KEY ``` - Supports custom MCP URLs for non-Gram servers - Configurable authentication headers - Environment variable substitution for secure API key storage - Automatic detection of locally set environment variables (uses actual value if available) - 29aee79: fixes potentially duplicate env vars from functions in the UX and MCP config Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 31e555b commit bac19bc

File tree

9 files changed

+76
-46
lines changed

9 files changed

+76
-46
lines changed

.changeset/brown-readers-sneeze.md

Lines changed: 0 additions & 32 deletions
This file was deleted.

.changeset/fair-colts-grow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/sad-flies-clap.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

cli/CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# cli
22

3+
## 0.13.0
4+
5+
### Minor Changes
6+
7+
- 31e555b: feat: Add gram install command for MCP server configuration & support common clients
8+
9+
**Automatic Configuration**
10+
11+
```bash
12+
gram install claude-code --toolset speakeasy-admin
13+
```
14+
15+
- Fetches toolset metadata from Gram API
16+
- Automatically derives MCP URL from organization, project & environment or custom MCP slug
17+
- Intelligently determines authentication headers and environment variables from toolset security config
18+
- Uses toolset name as the MCP server name
19+
20+
**Manual Configuration**
21+
22+
```bash
23+
gram install claude-code
24+
--mcp-url https://mcp.getgram.ai/org/project/environment
25+
--api-key your-api-key
26+
--header-name Custom-Auth-Header
27+
--env-var MY_API_KEY
28+
```
29+
30+
- Supports custom MCP URLs for non-Gram servers
31+
- Configurable authentication headers
32+
- Environment variable substitution for secure API key storage
33+
- Automatic detection of locally set environment variables (uses actual value if available)
34+
335
## 0.12.0
436

537
### Minor Changes

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "cli",
3-
"version": "0.12.0",
3+
"version": "0.13.0",
44
"private": true
55
}

client/dashboard/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# dashboard
22

3+
## 0.18.5
4+
5+
### Patch Changes
6+
7+
- faef164: opens up logs to free tier
8+
- 29aee79: fixes potentially duplicate env vars from functions in the UX and MCP config
9+
310
## 0.18.4
411

512
### Patch Changes

client/dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "dashboard",
33
"private": true,
4-
"version": "0.18.4",
4+
"version": "0.18.5",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

server/CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# server
22

3+
## 0.9.12
4+
5+
### Patch Changes
6+
7+
- 31e555b: feat: Add gram install command for MCP server configuration & support common clients
8+
9+
**Automatic Configuration**
10+
11+
```bash
12+
gram install claude-code --toolset speakeasy-admin
13+
```
14+
15+
- Fetches toolset metadata from Gram API
16+
- Automatically derives MCP URL from organization, project & environment or custom MCP slug
17+
- Intelligently determines authentication headers and environment variables from toolset security config
18+
- Uses toolset name as the MCP server name
19+
20+
**Manual Configuration**
21+
22+
```bash
23+
gram install claude-code
24+
--mcp-url https://mcp.getgram.ai/org/project/environment
25+
--api-key your-api-key
26+
--header-name Custom-Auth-Header
27+
--env-var MY_API_KEY
28+
```
29+
30+
- Supports custom MCP URLs for non-Gram servers
31+
- Configurable authentication headers
32+
- Environment variable substitution for secure API key storage
33+
- Automatic detection of locally set environment variables (uses actual value if available)
34+
35+
- 29aee79: fixes potentially duplicate env vars from functions in the UX and MCP config
36+
337
## 0.9.11
438

539
### Patch Changes

server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "server",
3-
"version": "0.9.11",
3+
"version": "0.9.12",
44
"description": "",
55
"private": true,
66
"main": "index.js",

0 commit comments

Comments
 (0)