Skip to content

Commit 29561b6

Browse files
0.2.0 (#1)
* Update dependencies * OOP styling * Messging tools * Update prompts for get_workflow_result * Bump version
1 parent 9ff56e5 commit 29561b6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+2337
-2756
lines changed

.prettierrc.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
module.exports = {
2+
tabWidth: 2,
3+
printWidth: 100,
4+
useTabs: false,
5+
semi: true,
6+
singleQuote: true,
7+
trailingComma: "all",
8+
bracketSpacing: true,
9+
arrowParens: "always",
10+
endOfLine: "auto",
11+
importOrderSeparation: true,
12+
importOrderSortSpecifiers: true,
13+
importOrderCaseInsensitive: true,
14+
importOrderParserPlugins: [
15+
"classProperties",
16+
"decorators-legacy",
17+
"typescript",
18+
],
19+
importOrder: ["<THIRD_PARTY_MODULES>", "^@/(.*)$", "^../(.*)", "^./(.*)"],
20+
plugins: ["@trivago/prettier-plugin-sort-imports"],
21+
};

package-lock.json

Lines changed: 67 additions & 119 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkedapi-mcp",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "MCP server for Linked API",
55
"main": "dist/index.js",
66
"bin": {
@@ -28,14 +28,15 @@
2828
"author": "Linked API",
2929
"license": "MIT",
3030
"dependencies": {
31-
"@modelcontextprotocol/sdk": "^1.17.2",
32-
"linkedapi-node": "^1.1.1",
33-
"zod": "^4.0.15"
31+
"@modelcontextprotocol/sdk": "^1.17.4",
32+
"linkedapi-node": "^1.2.2",
33+
"zod": "^4.1.1"
3434
},
3535
"devDependencies": {
3636
"@eslint/compat": "^1.2.8",
3737
"@eslint/eslintrc": "^3.3.1",
3838
"@eslint/js": "^9.24.0",
39+
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
3940
"@types/jest": "^29.5.12",
4041
"@types/node": "^20.12.12",
4142
"@typescript-eslint/eslint-plugin": "^8.29.1",

0 commit comments

Comments
 (0)