Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.6.1"
".": "2.6.2"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 2.6.2 (2026-05-07)

Full Changelog: [v2.6.1...v2.6.2](https://github.com/Mozilla-Ocho/tabstack-typescript/compare/v2.6.1...v2.6.2)

### Chores

* redact api-key headers in debug logs ([bca22fc](https://github.com/Mozilla-Ocho/tabstack-typescript/commit/bca22fc3f0b423fe733ebbe0cbf98c29ab4f390b))


### Documentation

* update http mcp docs ([5f803be](https://github.com/Mozilla-Ocho/tabstack-typescript/commit/5f803bed938816448ef059e184d02d6f880d1faf))

## 2.6.1 (2026-05-05)

Full Changelog: [v2.6.0...v2.6.1](https://github.com/Mozilla-Ocho/tabstack-typescript/compare/v2.6.0...v2.6.1)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tabstack/sdk",
"version": "2.6.1",
"version": "2.6.2",
"description": "The official TypeScript library for the Tabstack API",
"author": "Tabstack <>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"dxt_version": "0.2",
"name": "@tabstack/sdk-mcp",
"version": "2.6.1",
"version": "2.6.2",
"description": "The official MCP Server for the Tabstack API",
"author": {
"name": "Tabstack"
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tabstack/sdk-mcp",
"version": "2.6.1",
"version": "2.6.2",
"description": "The official MCP Server for the Tabstack API",
"author": "Tabstack <>",
"types": "dist/index.d.ts",
Expand Down
10 changes: 5 additions & 5 deletions packages/mcp-server/src/local-docs-search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const EMBEDDED_METHODS: MethodEntry[] = [
},
http: {
example:
'curl https://api.tabstack.ai/v1/automate \\\n -H \'Content-Type: application/json\' \\\n -H "Authorization: Bearer $TABSTACK_API_KEY" \\\n --max-time 600 \\\n -d "{\n \\"task\\": \\"Find the top 3 trending repositories and extract their names, descriptions, and star counts\\",\n \\"guardrails\\": \\"browse and extract only, don\'t interact with repositories\\",\n \\"maxIterations\\": 50,\n \\"maxValidationAttempts\\": 3,\n \\"url\\": \\"https://github.com/trending\\"\n }"',
'curl https://api.tabstack.ai/v1/automate \\\n -H \'Content-Type: application/json\' \\\n -H "Authorization: Bearer $TABSTACK_API_KEY" \\\n --max-time 600 \\\n -d "{\n \\"task\\": \\"Find the top 3 trending repositories and extract their names, descriptions, and star counts\\",\n \\"guardrails\\": \\"browse and extract only, don\'t interact with repositories\\",\n \\"interactive\\": false,\n \\"maxIterations\\": 50,\n \\"maxValidationAttempts\\": 3,\n \\"url\\": \\"https://github.com/trending\\"\n }"',
},
},
},
Expand Down Expand Up @@ -167,7 +167,7 @@ const EMBEDDED_METHODS: MethodEntry[] = [
},
http: {
example:
'curl https://api.tabstack.ai/v1/research \\\n -H \'Content-Type: application/json\' \\\n -H "Authorization: Bearer $TABSTACK_API_KEY" \\\n --max-time 600 \\\n -d \'{\n "query": "What are the latest developments in quantum computing?",\n "fetch_timeout": 30,\n "mode": "fast"\n }\'',
'curl https://api.tabstack.ai/v1/research \\\n -H \'Content-Type: application/json\' \\\n -H "Authorization: Bearer $TABSTACK_API_KEY" \\\n --max-time 600 \\\n -d \'{\n "query": "What are the latest developments in quantum computing?",\n "fetch_timeout": 30,\n "mode": "fast",\n "nocache": false\n }\'',
},
},
},
Expand Down Expand Up @@ -207,7 +207,7 @@ const EMBEDDED_METHODS: MethodEntry[] = [
},
http: {
example:
'curl https://api.tabstack.ai/v1/extract/json \\\n -H \'Content-Type: application/json\' \\\n -H "Authorization: Bearer $TABSTACK_API_KEY" \\\n --max-time 300 \\\n -d \'{\n "json_schema": {\n "properties": {\n "stories": {\n "items": {\n "properties": {\n "author": {\n "description": "Author username",\n "type": "string"\n },\n "points": {\n "description": "Story points",\n "type": "number"\n },\n "title": {\n "description": "Story title",\n "type": "string"\n }\n },\n "type": "object"\n },\n "type": "array"\n }\n },\n "type": "object"\n },\n "url": "https://news.ycombinator.com",\n "effort": "standard"\n }\'',
'curl https://api.tabstack.ai/v1/extract/json \\\n -H \'Content-Type: application/json\' \\\n -H "Authorization: Bearer $TABSTACK_API_KEY" \\\n --max-time 300 \\\n -d \'{\n "json_schema": {\n "properties": {\n "stories": {\n "items": {\n "properties": {\n "author": {\n "description": "Author username",\n "type": "string"\n },\n "points": {\n "description": "Story points",\n "type": "number"\n },\n "title": {\n "description": "Story title",\n "type": "string"\n }\n },\n "type": "object"\n },\n "type": "array"\n }\n },\n "type": "object"\n },\n "url": "https://news.ycombinator.com",\n "effort": "standard",\n "nocache": false\n }\'',
},
},
},
Expand Down Expand Up @@ -249,7 +249,7 @@ const EMBEDDED_METHODS: MethodEntry[] = [
},
http: {
example:
'curl https://api.tabstack.ai/v1/extract/markdown \\\n -H \'Content-Type: application/json\' \\\n -H "Authorization: Bearer $TABSTACK_API_KEY" \\\n --max-time 180 \\\n -d \'{\n "url": "https://example.com/blog/article",\n "effort": "standard",\n "metadata": true\n }\'',
'curl https://api.tabstack.ai/v1/extract/markdown \\\n -H \'Content-Type: application/json\' \\\n -H "Authorization: Bearer $TABSTACK_API_KEY" \\\n --max-time 180 \\\n -d \'{\n "url": "https://example.com/blog/article",\n "effort": "standard",\n "metadata": true,\n "nocache": false\n }\'',
},
},
},
Expand Down Expand Up @@ -291,7 +291,7 @@ const EMBEDDED_METHODS: MethodEntry[] = [
},
http: {
example:
'curl https://api.tabstack.ai/v1/generate/json \\\n -H \'Content-Type: application/json\' \\\n -H "Authorization: Bearer $TABSTACK_API_KEY" \\\n --max-time 300 \\\n -d "{\n \\"instructions\\": \\"For each story, categorize it (tech/business/science/other) and write a one-sentence summary explaining what it\'s about in simple terms.\\",\n \\"json_schema\\": {\n \\"properties\\": {\n \\"summaries\\": {\n \\"items\\": {\n \\"properties\\": {\n \\"category\\": {\n \\"description\\": \\"Story category (tech/business/science/etc)\\",\n \\"type\\": \\"string\\"\n },\n \\"summary\\": {\n \\"description\\": \\"One-sentence summary of the story\\",\n \\"type\\": \\"string\\"\n },\n \\"title\\": {\n \\"description\\": \\"Story title\\",\n \\"type\\": \\"string\\"\n }\n },\n \\"type\\": \\"object\\"\n },\n \\"type\\": \\"array\\"\n }\n },\n \\"type\\": \\"object\\"\n },\n \\"url\\": \\"https://news.ycombinator.com\\",\n \\"effort\\": \\"standard\\"\n }"',
'curl https://api.tabstack.ai/v1/generate/json \\\n -H \'Content-Type: application/json\' \\\n -H "Authorization: Bearer $TABSTACK_API_KEY" \\\n --max-time 300 \\\n -d "{\n \\"instructions\\": \\"For each story, categorize it (tech/business/science/other) and write a one-sentence summary explaining what it\'s about in simple terms.\\",\n \\"json_schema\\": {\n \\"properties\\": {\n \\"summaries\\": {\n \\"items\\": {\n \\"properties\\": {\n \\"category\\": {\n \\"description\\": \\"Story category (tech/business/science/etc)\\",\n \\"type\\": \\"string\\"\n },\n \\"summary\\": {\n \\"description\\": \\"One-sentence summary of the story\\",\n \\"type\\": \\"string\\"\n },\n \\"title\\": {\n \\"description\\": \\"Story title\\",\n \\"type\\": \\"string\\"\n }\n },\n \\"type\\": \\"object\\"\n },\n \\"type\\": \\"array\\"\n }\n },\n \\"type\\": \\"object\\"\n },\n \\"url\\": \\"https://news.ycombinator.com\\",\n \\"effort\\": \\"standard\\",\n \\"nocache\\": false\n }"',
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const newMcpServer = async ({
new McpServer(
{
name: 'tabstack_sdk_api',
version: '2.6.1',
version: '2.6.2',
},
{
instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),
Expand Down
2 changes: 2 additions & 0 deletions src/internal/utils/log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ export const formatRequestDetails = (details: {
name,
(
name.toLowerCase() === 'authorization' ||
name.toLowerCase() === 'api-key' ||
name.toLowerCase() === 'x-api-key' ||
name.toLowerCase() === 'cookie' ||
name.toLowerCase() === 'set-cookie'
) ?
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '2.6.1'; // x-release-please-version
export const VERSION = '2.6.2'; // x-release-please-version
Loading