@turbopuffer/turbopuffer-mcp 1.18.0 → 1.19.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 CHANGED
@@ -43,14 +43,14 @@ For clients with a configuration JSON, it might look something like this:
43
43
  If you use Cursor, you can install the MCP server by using the button below. You will need to set your environment variables
44
44
  in Cursor's `mcp.json`, which can be found in Cursor Settings > Tools & MCP > New MCP Server.
45
45
 
46
- [![Add to Cursor](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en-US/install-mcp?name=%40turbopuffer%2Fturbopuffer-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkB0dXJib3B1ZmZlci90dXJib3B1ZmZlci1tY3AiXSwiZW52Ijp7IlRVUkJPUFVGRkVSX0FQSV9LRVkiOiJ0cHVmX0ExLi4uIiwiVFVSQk9QVUZGRVJfUkVHSU9OIjoiZ2NwLXVzLWNlbnRyYWwxIiwiVFVSQk9QVUZGRVJfREVGQVVMVF9OQU1FU1BBQ0UiOiJNeSBEZWZhdWx0IE5hbWVzcGFjZSJ9fQ)
46
+ [![Add to Cursor](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en-US/install-mcp?name=%40turbopuffer%2Fturbopuffer-mcp&config=eyJuYW1lIjoiQHR1cmJvcHVmZmVyL3R1cmJvcHVmZmVyLW1jcCIsInRyYW5zcG9ydCI6Imh0dHAiLCJ1cmwiOiJodHRwczovL3R1cmJvcHVmZmVyLnN0bG1jcC5jb20iLCJoZWFkZXJzIjp7IngtdHVyYm9wdWZmZXItYXBpLWtleSI6InRwdWZfQTEuLi4ifX0)
47
47
 
48
48
  ### VS Code
49
49
 
50
50
  If you use MCP, you can install the MCP server by clicking the link below. You will need to set your environment variables
51
51
  in VS Code's `mcp.json`, which can be found via Command Palette > MCP: Open User Configuration.
52
52
 
53
- [Open VS Code](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22%40turbopuffer%2Fturbopuffer-mcp%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40turbopuffer%2Fturbopuffer-mcp%22%5D%2C%22env%22%3A%7B%22TURBOPUFFER_API_KEY%22%3A%22tpuf_A1...%22%2C%22TURBOPUFFER_REGION%22%3A%22gcp-us-central1%22%2C%22TURBOPUFFER_DEFAULT_NAMESPACE%22%3A%22My%20Default%20Namespace%22%7D%7D)
53
+ [Open VS Code](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22%40turbopuffer%2Fturbopuffer-mcp%22%2C%22type%22%3A%22http%22%2C%22url%22%3A%22https%3A%2F%2Fturbopuffer.stlmcp.com%22%2C%22headers%22%3A%7B%22x-turbopuffer-api-key%22%3A%22tpuf_A1...%22%7D%7D)
54
54
 
55
55
  ### Claude Code
56
56
 
@@ -58,7 +58,7 @@ If you use Claude Code, you can install the MCP server by running the command be
58
58
  environment variables in Claude Code's `.claude.json`, which can be found in your home directory.
59
59
 
60
60
  ```
61
- claude mcp add turbopuffer_turbopuffer_mcp_api --env TURBOPUFFER_API_KEY="tpuf_A1..." TURBOPUFFER_REGION="gcp-us-central1" TURBOPUFFER_DEFAULT_NAMESPACE="My Default Namespace" -- npx -y @turbopuffer/turbopuffer-mcp
61
+ claude mcp add turbopuffer_turbopuffer_mcp_api --header "x-turbopuffer-api-key: tpuf_A1..." --transport http https://turbopuffer.stlmcp.com
62
62
  ```
63
63
 
64
64
  ## Code Mode
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turbopuffer/turbopuffer-mcp",
3
- "version": "1.18.0",
3
+ "version": "1.19.0",
4
4
  "description": "The official MCP Server for the Turbopuffer API",
5
5
  "author": "Turbopuffer <info@turbopuffer.com>",
6
6
  "types": "./index.d.ts",
@@ -27,7 +27,7 @@
27
27
  "fix": "eslint --fix --ext ts,js ."
28
28
  },
29
29
  "dependencies": {
30
- "@turbopuffer/turbopuffer": "^1.18.0",
30
+ "@turbopuffer/turbopuffer": "^1.19.0",
31
31
  "@cloudflare/cabidela": "^0.2.4",
32
32
  "@modelcontextprotocol/sdk": "^1.25.2",
33
33
  "@valtown/deno-http-worker": "^0.0.21",
package/server.js CHANGED
@@ -15,7 +15,7 @@ const code_tool_1 = require("./code-tool.js");
15
15
  const docs_search_tool_1 = __importDefault(require("./docs-search-tool.js"));
16
16
  const newMcpServer = () => new mcp_js_1.McpServer({
17
17
  name: 'turbopuffer_turbopuffer_api',
18
- version: '1.18.0',
18
+ version: '1.19.0',
19
19
  }, {
20
20
  capabilities: {
21
21
  tools: {},
package/server.mjs CHANGED
@@ -6,7 +6,7 @@ import { codeTool } from "./code-tool.mjs";
6
6
  import docsSearchTool from "./docs-search-tool.mjs";
7
7
  export const newMcpServer = () => new McpServer({
8
8
  name: 'turbopuffer_turbopuffer_api',
9
- version: '1.18.0',
9
+ version: '1.19.0',
10
10
  }, {
11
11
  capabilities: {
12
12
  tools: {},
package/src/server.ts CHANGED
@@ -21,7 +21,7 @@ export const newMcpServer = () =>
21
21
  new McpServer(
22
22
  {
23
23
  name: 'turbopuffer_turbopuffer_api',
24
- version: '1.18.0',
24
+ version: '1.19.0',
25
25
  },
26
26
  {
27
27
  capabilities: {