Skip to content

Commit 1d2b5b5

Browse files
committed
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.520.1
1 parent 2724855 commit 1d2b5b5

File tree

11 files changed

+71
-28
lines changed

11 files changed

+71
-28
lines changed

.speakeasy/gen.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ id: 7a2c976b-8158-4d12-8b59-c491e9e10cfd
33
management:
44
docChecksum: 7b0a21df5c4526c3e13357d16d9397df
55
docVersion: 1.0.0
6-
speakeasyVersion: 1.519.0
7-
generationVersion: 2.552.1
8-
releaseVersion: 0.21.0
9-
configChecksum: 1bb567a7f99fade8139db709537f893b
6+
speakeasyVersion: 1.520.1
7+
generationVersion: 2.556.1
8+
releaseVersion: 0.22.0
9+
configChecksum: 9cbabeb770f9028e577dde60109952ff
1010
repoURL: https://github.com/ding-live/ding-typescript.git
1111
repoSubDirectory: .
1212
installationURL: https://github.com/ding-live/ding-typescript
@@ -24,7 +24,7 @@ features:
2424
globalSecurityCallbacks: 0.1.0
2525
globalSecurityFlattening: 0.1.0
2626
globalServerURLs: 2.82.4
27-
mcpServer: 0.8.0
27+
mcpServer: 0.9.0
2828
responseFormat: 0.2.3
2929
retries: 2.83.0
3030
sdkHooks: 0.2.0

.speakeasy/workflow.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
speakeasyVersion: 1.519.0
1+
speakeasyVersion: 1.520.1
22
sources:
33
my-source:
44
sourceNamespace: my-source
5-
sourceRevisionDigest: sha256:e0d71ae4753cda930127758a1710de5b1e01bba233fa1e0892928fdd1e616109
5+
sourceRevisionDigest: sha256:a0c97c2c53b08a49ed05c8bae1f660be8ace03461bc5d4dfe04431019c771bc8
66
sourceBlobDigest: sha256:f7272f9ebff9082fa0c9f834d73f91cdc05a4fee0f66f43e24cf6ac124a12198
77
tags:
88
- latest
9-
- speakeasy-sdk-regen-1742256229
9+
- speakeasy-sdk-regen-1742342637
1010
- 1.0.0
1111
targets:
1212
'@ding-live/ding':
1313
source: my-source
1414
sourceNamespace: my-source
15-
sourceRevisionDigest: sha256:e0d71ae4753cda930127758a1710de5b1e01bba233fa1e0892928fdd1e616109
15+
sourceRevisionDigest: sha256:a0c97c2c53b08a49ed05c8bae1f660be8ace03461bc5d4dfe04431019c771bc8
1616
sourceBlobDigest: sha256:f7272f9ebff9082fa0c9f834d73f91cdc05a4fee0f66f43e24cf6ac124a12198
1717
codeSamplesNamespace: my-source-typescript-code-samples
18-
codeSamplesRevisionDigest: sha256:68e2a50a0ab600f6a5dfa17a474123322682363591016cbea1bf1a6fe055aeff
18+
codeSamplesRevisionDigest: sha256:c51c4d56cff4e52eb4e0ca017904f46359cf41b519d2b0128284cca3bbc9a3a4
1919
workflow:
2020
workflowVersion: 1.0.0
2121
speakeasyVersion: latest

README.md

Lines changed: 40 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ yarn add @ding-live/ding zod
6868
This SDK is also an installable MCP server where the various SDK methods are
6969
exposed as tools that can be invoked by AI applications.
7070

71-
> Node.js v20 or greater is required to run the MCP server.
71+
> Node.js v20 or greater is required to run the MCP server from npm.
7272
7373
<details>
7474
<summary>Claude installation steps</summary>
@@ -96,17 +96,50 @@ Add the following server definition to your `claude_desktop_config.json` file:
9696
<details>
9797
<summary>Cursor installation steps</summary>
9898

99-
Go to `Cursor Settings > Features > MCP Servers > Add new MCP server` and use the following settings:
99+
Create a `.cursor/mcp.json` file in your project root with the following content:
100100

101-
- Name: Ding
102-
- Type: `command`
103-
- Command:
104-
```sh
105-
npx -y --package @ding-live/ding -- mcp start --api-key ...
101+
```json
102+
{
103+
"mcpServers": {
104+
"Ding": {
105+
"command": "npx",
106+
"args": [
107+
"-y", "--package", "@ding-live/ding",
108+
"--",
109+
"mcp", "start",
110+
"--api-key", "..."
111+
]
112+
}
113+
}
114+
}
106115
```
107116

108117
</details>
109118

119+
You can also run MCP servers as a standalone binary with no additional dependencies. You must pull these binaries from available Github releases:
120+
121+
```bash
122+
curl -L -o mcp-server \
123+
https://github.com/{org}/{repo}/releases/download/{tag}/mcp-server-bun-darwin-arm64 && \
124+
chmod +x mcp-server
125+
```
126+
127+
If the repo is a private repo you must add your Github PAT to download a release `-H "Authorization: Bearer {GITHUB_PAT}"`.
128+
129+
130+
```json
131+
{
132+
"mcpServers": {
133+
"Todos": {
134+
"command": "./DOWNLOAD/PATH/mcp-server",
135+
"args": [
136+
"start"
137+
]
138+
}
139+
}
140+
}
141+
```
142+
110143
For a full list of server arguments, run:
111144

112145
```sh

RELEASES.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1866,4 +1866,14 @@ Based on:
18661866
### Generated
18671867
- [typescript v0.21.0] .
18681868
### Releases
1869-
- [NPM v0.21.0] https://www.npmjs.com/package/@ding-live/ding/v/0.21.0 - .
1869+
- [NPM v0.21.0] https://www.npmjs.com/package/@ding-live/ding/v/0.21.0 - .
1870+
1871+
## 2025-03-19 00:03:40
1872+
### Changes
1873+
Based on:
1874+
- OpenAPI Doc
1875+
- Speakeasy CLI 1.520.1 (2.556.1) https://github.com/speakeasy-api/speakeasy
1876+
### Generated
1877+
- [typescript v0.22.0] .
1878+
### Releases
1879+
- [NPM v0.22.0] https://www.npmjs.com/package/@ding-live/ding/v/0.22.0 - .

gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ generation:
1212
oAuth2ClientCredentialsEnabled: false
1313
oAuth2PasswordEnabled: false
1414
typescript:
15-
version: 0.21.0
15+
version: 0.22.0
1616
additionalDependencies:
1717
dependencies: {}
1818
devDependencies: {}

jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
{
44
"name": "@ding-live/ding",
5-
"version": "0.21.0",
5+
"version": "0.22.0",
66
"exports": {
77
".": "./src/index.ts",
88
"./models/errors": "./src/models/errors/index.ts",

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ding-live/ding",
3-
"version": "0.21.0",
3+
"version": "0.22.0",
44
"author": "Ding",
55
"bin": {
66
"mcp": "bin/mcp-server.js"

src/lib/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
5757
export const SDK_METADATA = {
5858
language: "typescript",
5959
openapiDocVersion: "1.0.0",
60-
sdkVersion: "0.21.0",
61-
genVersion: "2.552.1",
62-
userAgent: "speakeasy-sdk/typescript 0.21.0 2.552.1 1.0.0 @ding-live/ding",
60+
sdkVersion: "0.22.0",
61+
genVersion: "2.556.1",
62+
userAgent: "speakeasy-sdk/typescript 0.22.0 2.556.1 1.0.0 @ding-live/ding",
6363
} as const;

src/mcp-server/mcp-server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const routes = buildRouteMap({
1919
export const app = buildApplication(routes, {
2020
name: "mcp",
2121
versionInfo: {
22-
currentVersion: "0.21.0",
22+
currentVersion: "0.22.0",
2323
},
2424
});
2525

0 commit comments

Comments
 (0)