@turbopuffer/turbopuffer-mcp 1.17.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 +3 -3
- package/package.json +2 -2
- package/server.js +1 -1
- package/server.mjs +1 -1
- package/src/server.ts +1 -1
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
|
-
[](https://cursor.com/en-US/install-mcp?name=%40turbopuffer%2Fturbopuffer-mcp&config=
|
|
46
|
+
[](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%
|
|
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 --
|
|
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.
|
|
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.
|
|
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
|
+
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.
|
|
9
|
+
version: '1.19.0',
|
|
10
10
|
}, {
|
|
11
11
|
capabilities: {
|
|
12
12
|
tools: {},
|