Skip to content

Commit 4dc0a24

Browse files
committed
Sync open source content 🐝 (from 306de640812fcb3cb46787c7aee12b7f90485fed)
1 parent a045249 commit 4dc0a24

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

β€Ždocs/speakeasy-reference/generation/ts-config.mdxβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,11 +384,13 @@ typescript:
384384
```yml
385385
typescript:
386386
enableReactQuery: false
387+
enableMCPServer: false
387388
```
388389

389390
<Table
390391
data={[
391-
{ property: "[enableReactQuery](/docs/sdks/customize/typescript/react-hooks)", description: "Generate React hooks using TanStack Query.", type: "boolean", default: "false" }
392+
{ property: "[enableReactQuery](/docs/sdks/customize/typescript/react-hooks)", description: "Generate React hooks using TanStack Query.", type: "boolean", default: "false" },
393+
{ property: "enableMCPServer", description: "**Deprecated.** Previously used to generate an MCP server as part of the TypeScript SDK. Users should leave this set to `false` and use the standalone [MCP server generation](/docs/standalone-mcp/introduction) target (`mcp-typescript`) instead.", type: "boolean", default: "false" }
392394
]}
393395
columns={[
394396
{ key: "property", header: "Property" },

β€Ždocs/standalone-mcp/introduction.mdxβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Model Context Protocol (MCP) servers enable AI agents to interact with your APIs
1111

1212
## What's New?
1313

14-
Previously, MCP servers were generated as part of TypeScript SDK generation. Now, you can generate standalone MCP servers independently:
14+
Previously, MCP servers were generated as part of TypeScript SDK generation using the `enableMCPServer` flag. That flag is now deprecated and should be left as `false`. Instead, you can generate standalone MCP servers independently:
1515

1616
- **Direct Generation**: Generate MCP servers directly from your OpenAPI spec
1717
- **Language Agnostic**: Works with any API, regardless of the implementation language
@@ -35,4 +35,4 @@ Follow our [step-by-step guide](/docs/standalone-mcp/build-server) to generate y
3535

3636
<Callout type="info">
3737
Want to understand MCP better? Check out our [introduction to MCP](/mcp/overview) and [AI agents overview](/mcp/using-mcp/ai-agents/introduction).
38-
</Callout>
38+
</Callout>

0 commit comments

Comments
Β (0)