Skip to content

Commit 64d58db

Browse files
release: extension v2.2.0 mcp-server v2.5.0 lsp-server v1.1.0
1 parent c0af4e7 commit 64d58db

4 files changed

Lines changed: 14 additions & 8 deletions

File tree

packages/extension/package.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "airtable-formula",
33
"private": true,
4-
"version": "2.1.32",
4+
"version": "2.2.0",
55
"publisher": "Nskha",
66
"displayName": "Airtable Formulas, Scripts, Automation, MCP & LSP",
77
"description": "Airtable formula, script & automation editor with MCP server (72 tools), language server, and AI skills for VS Code.",
@@ -407,7 +407,11 @@
407407
"airtableFormula.mcp.authMode": {
408408
"type": "string",
409409
"default": "browser",
410-
"enum": ["browser", "byo", "direct-login"],
410+
"enum": [
411+
"browser",
412+
"byo",
413+
"direct-login"
414+
],
411415
"enumDescriptions": [
412416
"Log in through a bundled headless Chrome, then run all API calls over direct HTTP (default). The browser only mints/refreshes the session cookie.",
413417
"Bring your own cookie — no browser. Paste a session cookie into ~/.airtable-user-mcp/credentials.json (or set the AIRTABLE_COOKIE env var); the CSRF token is scraped automatically.",
@@ -418,7 +422,10 @@
418422
"airtableFormula.mcp.httpClient": {
419423
"type": "string",
420424
"default": "fetch",
421-
"enum": ["fetch", "impit"],
425+
"enum": [
426+
"fetch",
427+
"impit"
428+
],
422429
"enumDescriptions": [
423430
"Node's built-in fetch (default) — verified to work against Airtable's internal API with no TLS impersonation.",
424431
"impit with Chrome TLS impersonation — a fallback if Airtable ever fingerprints non-browser clients. Requires the optional 'impit' package to be available to the server."
@@ -431,7 +438,6 @@
431438
"minimum": 0,
432439
"description": "Minutes of idle time before the shared daemon parks (closes) its Chromium browser to free ~300–600 MB RSS. Cookie-based HTTP keeps working; the browser is only relaunched if session recovery needs it. Set 0 to disable. Takes effect on the next daemon/server restart."
433440
},
434-
435441
"airtableFormula.mcp.serverSource": {
436442
"type": "string",
437443
"default": "bundled",

packages/lsp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "airtable-user-lsp",
3-
"version": "1.0.6",
3+
"version": "1.1.0",
44
"description": "Airtable language server for formula, script, and automation files. Works with any LSP-capable editor.",
55
"type": "module",
66
"main": "dist/index.mjs",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "airtable-user-mcp",
3-
"version": "2.4.15",
3+
"version": "2.5.0",
44
"mcpName": "io.github.Automations-Project/airtable-user-mcp",
55
"description": "Community MCP server for Airtable. Schema inspection, table / field / view CRUD (including merge-safe filter / sort / group updates), formula validation, and extension management. Not affiliated with Airtable Inc.",
66
"main": "src/index.js",

packages/mcp-server/server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "io.github.Automations-Project/airtable-user-mcp",
44
"title": "Airtable User MCP",
55
"description": "Manage Airtable bases via the internal API: schema inspection, table/field/view CRUD, formula validation and download, record CRUD, sidebar sections, record templates, extensions, base-to-base sync, and daemon control",
6-
"version": "2.4.15",
6+
"version": "2.5.0",
77
"websiteUrl": "https://github.com/Automations-Project/VSCode-Airtable-Formula/tree/main/packages/mcp-server",
88
"repository": {
99
"url": "https://github.com/Automations-Project/VSCode-Airtable-Formula",
@@ -22,7 +22,7 @@
2222
{
2323
"registryType": "npm",
2424
"identifier": "airtable-user-mcp",
25-
"version": "2.4.15",
25+
"version": "2.5.0",
2626
"runtimeHint": "npx",
2727
"transport": {
2828
"type": "stdio"

0 commit comments

Comments
 (0)