Skip to content
This repository was archived by the owner on May 22, 2026. It is now read-only.
Merged
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 apps/mcp-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stackone/mcp-test",
"version": "0.0.9",
"version": "0.0.8",

Copilot AI Nov 21, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version is being decremented from 0.0.9 to 0.0.8, which violates semantic versioning principles. According to .release-please-manifest.json, the current version is 0.0.9. Version numbers should only increment, never decrement. This should likely be 0.0.10 instead.

Suggested change
"version": "0.0.8",
"version": "0.0.10",

Copilot uses AI. Check for mistakes.
"description": "automated testing for MCP servers",
"type": "module",
"bin": {
Expand Down
96 changes: 48 additions & 48 deletions packages/mcp-connectors/package.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,50 @@
{
"name": "@stackone/mcp-connectors",
"version": "0.0.23",
"description": "MCP connectors for disco.dev",
"module": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"type": "module",
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "bun -b tsdown",
"prepublishOnly": "bun run build",
"test": "vitest --run",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"@1password/connect": "^1.4.2",
"@linear/sdk": "^55.0.0",
"@orama/orama": "^3.1.11",
"node-html-parser": "^7.0.1",
"openai": "^5.12.1",
"zod": "^3.25",
"modal": "^0.3.19",
"@stackone/mcp-config-types": "^0.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StackOneHQ/mcp-connectors.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"connectors",
"stackone",
"saas",
"integrations",
"disco"
],
"author": "StackOne",
"license": "Apache-2.0",
"bugs": "https://github.com/StackOneHQ/mcp-connectors/issues",
"homepage": "https://github.com/StackOneHQ/mcp-connectors#readme"
"name": "@stackone/mcp-connectors",
"version": "0.0.24",
"description": "MCP connectors for disco.dev",
"module": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"type": "module",
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "bun -b tsdown",
"prepublishOnly": "bun run build",
"test": "vitest --run",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"@1password/connect": "^1.4.2",
"@linear/sdk": "^55.0.0",
"@orama/orama": "^3.1.11",
"node-html-parser": "^7.0.1",
"openai": "^5.12.1",
"zod": "^3.25",
"modal": "^0.3.19",
"@stackone/mcp-config-types": "^0.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StackOneHQ/mcp-connectors.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"connectors",
"stackone",
"saas",
"integrations",
"disco"
],
"author": "StackOne",
"license": "Apache-2.0",
"bugs": "https://github.com/StackOneHQ/mcp-connectors/issues",
"homepage": "https://github.com/StackOneHQ/mcp-connectors#readme"
}
Loading