hono-mcp 1.3.0 → 1.4.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 +21 -219
- package/dist/cli.js +1 -80
- package/dist/data/vscode-settings.json +185 -185
- package/dist/index.js +1 -40
- package/package.json +12 -4
- package/dist/commands/math.js +0 -105
- package/dist/decorators/command.js +0 -37
- package/dist/tools/decorator-tools.js +0 -93
|
@@ -1,188 +1,188 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
]
|
|
34
|
-
},
|
|
35
|
-
"editor.unicodeHighlight.allowedLocales": {
|
|
36
|
-
"ja": true
|
|
37
|
-
},
|
|
38
|
-
"editor.formatOnSave": true,
|
|
39
|
-
"editor.formatOnPaste": true,
|
|
40
|
-
"editor.formatOnType": true,
|
|
41
|
-
"editor.formatOnSaveMode": "file",
|
|
42
|
-
"editor.foldingImportsByDefault": false,
|
|
43
|
-
"editor.codeActionsOnSave": {
|
|
44
|
-
"source.organizeImports": "always",
|
|
45
|
-
"source.fixAll.stylelint": "always",
|
|
46
|
-
"source.fixAll.tsserver": "always",
|
|
47
|
-
"source.unusedImports": "always"
|
|
48
|
-
},
|
|
49
|
-
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
50
|
-
"prettier.semi": true,
|
|
51
|
-
"editor.quickSuggestions": {
|
|
52
|
-
"other": "on",
|
|
53
|
-
"comments": "on",
|
|
54
|
-
"strings": "on"
|
|
55
|
-
},
|
|
56
|
-
"editor.quickSuggestionsDelay": 0,
|
|
57
|
-
"editor.suggest.matchOnWordStartOnly": true,
|
|
58
|
-
"editor.suggestFontSize": 14,
|
|
59
|
-
"editor.suggestLineHeight": 22,
|
|
60
|
-
"editor.suggest.preview": true,
|
|
61
|
-
"editor.suggest.showStatusBar": true,
|
|
62
|
-
"editor.suggest.filterGraceful": true,
|
|
63
|
-
"editor.suggest.shareSuggestSelections": true,
|
|
64
|
-
"editor.suggestSelection": "first",
|
|
65
|
-
"editor.suggest.showIcons": true,
|
|
66
|
-
"editor.suggest.showMethods": true,
|
|
67
|
-
"editor.suggest.showFunctions": true,
|
|
68
|
-
"editor.suggest.showConstructors": true,
|
|
69
|
-
"editor.suggest.showFields": true,
|
|
70
|
-
"editor.suggest.showVariables": true,
|
|
71
|
-
"editor.suggest.showUnits": true,
|
|
72
|
-
"editor.suggest.showValues": true,
|
|
73
|
-
"editor.suggest.showSnippets": true,
|
|
74
|
-
"editor.suggest.showKeywords": true,
|
|
75
|
-
"editor.suggest.showWords": true,
|
|
76
|
-
"editor.suggest.showOperators": true,
|
|
77
|
-
"editor.suggest.insertMode": "insert",
|
|
78
|
-
"editor.suggest.snippetsPreventQuickSuggestions": false,
|
|
79
|
-
"editor.suggest.localityBonus": true,
|
|
80
|
-
"editor.suggestOnTriggerCharacters": true,
|
|
81
|
-
"editor.acceptSuggestionOnCommitCharacter": true,
|
|
82
|
-
"editor.acceptSuggestionOnEnter": "smart",
|
|
83
|
-
"editor.parameterHints.enabled": true,
|
|
84
|
-
"editor.inlineSuggest.fontFamily": "'JetBrains Mono', 'Fira Code', 'Consolas', monospace",
|
|
85
|
-
"editor.inlineSuggest.suppressSuggestions": false,
|
|
86
|
-
"editor.autoClosingBrackets": "always",
|
|
87
|
-
"editor.autoClosingQuotes": "always",
|
|
88
|
-
"editor.autoSurround": "languageDefined",
|
|
89
|
-
"editor.largeFileOptimizations": false,
|
|
90
|
-
"tailwindCSS.includeLanguages": {
|
|
91
|
-
"plaintext": "html"
|
|
92
|
-
},
|
|
93
|
-
"files.autoSave": "afterDelay",
|
|
94
|
-
"workbench.editor.doubleClickTabToToggleEditorGroupSizes": "maximize",
|
|
95
|
-
"files.autoSaveDelay": 1000,
|
|
96
|
-
"files.refactoring.autoSave": true,
|
|
97
|
-
"files.associations": {
|
|
98
|
-
"*.vue": "vue",
|
|
99
|
-
"*.cjs": "javascript",
|
|
100
|
-
"*.mjs": "javascript",
|
|
101
|
-
"*.css": "tailwindcss"
|
|
102
|
-
},
|
|
103
|
-
"terminal.integrated.tabs.enabled": true,
|
|
104
|
-
"terminal.integrated.cursorStyle": "line",
|
|
105
|
-
"terminal.integrated.cursorBlinking": true,
|
|
106
|
-
"terminal.integrated.cursorStyleInactive": "line",
|
|
107
|
-
"terminal.integrated.fontFamily": "'JetBrains Mono', Consolas, 'Fira Code', monospace",
|
|
108
|
-
"terminal.integrated.enableMultiLinePasteWarning": "never",
|
|
109
|
-
"git.ignoreMissingGitWarning": true,
|
|
110
|
-
"git.confirmSync": false,
|
|
111
|
-
"git.enableSmartCommit": true,
|
|
112
|
-
"git.autofetch": true,
|
|
113
|
-
"git.openRepositoryInParentFolders": "never",
|
|
114
|
-
"debug.onTaskErrors": "debugAnyway",
|
|
115
|
-
"security.promptForLocalFileProtocolHandling": false,
|
|
116
|
-
"trae.preview.permission": {
|
|
117
|
-
"localhost": {
|
|
118
|
-
"fileSystem": "granted"
|
|
2
|
+
"security.workspace.trust.untrustedFiles": "open",
|
|
3
|
+
"workbench.colorTheme": "One Dark Modern",
|
|
4
|
+
"editor.fontFamily": "'JetBrains Mono', 'maple mono', 'Fira Code', 'Consolas', monospace",
|
|
5
|
+
"editor.tabSize": 4,
|
|
6
|
+
"editor.fontSize": 17,
|
|
7
|
+
"editor.fontLigatures": true,
|
|
8
|
+
"editor.fontWeight": 100,
|
|
9
|
+
"editor.lineNumbers": "on",
|
|
10
|
+
"editor.cursorStyle": "line-thin",
|
|
11
|
+
"editor.wordWrap": "on",
|
|
12
|
+
"editor.scrollBeyondLastLine": false,
|
|
13
|
+
"editor.renderControlCharacters": false,
|
|
14
|
+
"editor.linkedEditing": true,
|
|
15
|
+
"editor.mouseWheelZoom": true,
|
|
16
|
+
"editor.multiCursorModifier": "alt",
|
|
17
|
+
"editor.dragAndDrop": true,
|
|
18
|
+
"editor.showUnused": true,
|
|
19
|
+
"editor.emptySelectionClipboard": true,
|
|
20
|
+
"editor.accessibilityPageSize": 500,
|
|
21
|
+
"editor.minimap.maxColumn": 70,
|
|
22
|
+
"editor.minimap.renderCharacters": true,
|
|
23
|
+
"editor.minimap.showSlider": "always",
|
|
24
|
+
"editor.tokenColorCustomizations": {
|
|
25
|
+
"textMateRules": [
|
|
26
|
+
{
|
|
27
|
+
"name": "Comments",
|
|
28
|
+
"scope": "comment, punctuation.definition.comment",
|
|
29
|
+
"settings": {
|
|
30
|
+
"foreground": "#458b29"
|
|
119
31
|
}
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
"
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
"
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
"
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
"
|
|
187
|
-
"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
"editor.unicodeHighlight.allowedLocales": {
|
|
36
|
+
"ja": true
|
|
37
|
+
},
|
|
38
|
+
"editor.formatOnSave": true,
|
|
39
|
+
"editor.formatOnPaste": true,
|
|
40
|
+
"editor.formatOnType": true,
|
|
41
|
+
"editor.formatOnSaveMode": "file",
|
|
42
|
+
"editor.foldingImportsByDefault": false,
|
|
43
|
+
"editor.codeActionsOnSave": {
|
|
44
|
+
"source.organizeImports": "always",
|
|
45
|
+
"source.fixAll.stylelint": "always",
|
|
46
|
+
"source.fixAll.tsserver": "always",
|
|
47
|
+
"source.unusedImports": "always"
|
|
48
|
+
},
|
|
49
|
+
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
50
|
+
"prettier.semi": true,
|
|
51
|
+
"editor.quickSuggestions": {
|
|
52
|
+
"other": "on",
|
|
53
|
+
"comments": "on",
|
|
54
|
+
"strings": "on"
|
|
55
|
+
},
|
|
56
|
+
"editor.quickSuggestionsDelay": 0,
|
|
57
|
+
"editor.suggest.matchOnWordStartOnly": true,
|
|
58
|
+
"editor.suggestFontSize": 14,
|
|
59
|
+
"editor.suggestLineHeight": 22,
|
|
60
|
+
"editor.suggest.preview": true,
|
|
61
|
+
"editor.suggest.showStatusBar": true,
|
|
62
|
+
"editor.suggest.filterGraceful": true,
|
|
63
|
+
"editor.suggest.shareSuggestSelections": true,
|
|
64
|
+
"editor.suggestSelection": "first",
|
|
65
|
+
"editor.suggest.showIcons": true,
|
|
66
|
+
"editor.suggest.showMethods": true,
|
|
67
|
+
"editor.suggest.showFunctions": true,
|
|
68
|
+
"editor.suggest.showConstructors": true,
|
|
69
|
+
"editor.suggest.showFields": true,
|
|
70
|
+
"editor.suggest.showVariables": true,
|
|
71
|
+
"editor.suggest.showUnits": true,
|
|
72
|
+
"editor.suggest.showValues": true,
|
|
73
|
+
"editor.suggest.showSnippets": true,
|
|
74
|
+
"editor.suggest.showKeywords": true,
|
|
75
|
+
"editor.suggest.showWords": true,
|
|
76
|
+
"editor.suggest.showOperators": true,
|
|
77
|
+
"editor.suggest.insertMode": "insert",
|
|
78
|
+
"editor.suggest.snippetsPreventQuickSuggestions": false,
|
|
79
|
+
"editor.suggest.localityBonus": true,
|
|
80
|
+
"editor.suggestOnTriggerCharacters": true,
|
|
81
|
+
"editor.acceptSuggestionOnCommitCharacter": true,
|
|
82
|
+
"editor.acceptSuggestionOnEnter": "smart",
|
|
83
|
+
"editor.parameterHints.enabled": true,
|
|
84
|
+
"editor.inlineSuggest.fontFamily": "'JetBrains Mono', 'Fira Code', 'Consolas', monospace",
|
|
85
|
+
"editor.inlineSuggest.suppressSuggestions": false,
|
|
86
|
+
"editor.autoClosingBrackets": "always",
|
|
87
|
+
"editor.autoClosingQuotes": "always",
|
|
88
|
+
"editor.autoSurround": "languageDefined",
|
|
89
|
+
"editor.largeFileOptimizations": false,
|
|
90
|
+
"tailwindCSS.includeLanguages": {
|
|
91
|
+
"plaintext": "html"
|
|
92
|
+
},
|
|
93
|
+
"files.autoSave": "afterDelay",
|
|
94
|
+
"workbench.editor.doubleClickTabToToggleEditorGroupSizes": "maximize",
|
|
95
|
+
"files.autoSaveDelay": 1000,
|
|
96
|
+
"files.refactoring.autoSave": true,
|
|
97
|
+
"files.associations": {
|
|
98
|
+
"*.vue": "vue",
|
|
99
|
+
"*.cjs": "javascript",
|
|
100
|
+
"*.mjs": "javascript",
|
|
101
|
+
"*.css": "tailwindcss"
|
|
102
|
+
},
|
|
103
|
+
"terminal.integrated.tabs.enabled": true,
|
|
104
|
+
"terminal.integrated.cursorStyle": "line",
|
|
105
|
+
"terminal.integrated.cursorBlinking": true,
|
|
106
|
+
"terminal.integrated.cursorStyleInactive": "line",
|
|
107
|
+
"terminal.integrated.fontFamily": "'JetBrains Mono', Consolas, 'Fira Code', monospace",
|
|
108
|
+
"terminal.integrated.enableMultiLinePasteWarning": "never",
|
|
109
|
+
"git.ignoreMissingGitWarning": true,
|
|
110
|
+
"git.confirmSync": false,
|
|
111
|
+
"git.enableSmartCommit": true,
|
|
112
|
+
"git.autofetch": true,
|
|
113
|
+
"git.openRepositoryInParentFolders": "never",
|
|
114
|
+
"debug.onTaskErrors": "debugAnyway",
|
|
115
|
+
"security.promptForLocalFileProtocolHandling": false,
|
|
116
|
+
"trae.preview.permission": {
|
|
117
|
+
"localhost": {
|
|
118
|
+
"fileSystem": "granted"
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"python.analysis.importFormat": "absolute",
|
|
122
|
+
"python.analysis.autoFormatStrings": false,
|
|
123
|
+
"javascript.updateImportsOnFileMove.enabled": "never",
|
|
124
|
+
"typescript.updateImportsOnFileMove.enabled": "always",
|
|
125
|
+
"extensions.ignoreRecommendations": false,
|
|
126
|
+
"code-runner.clearPreviousOutput": true,
|
|
127
|
+
"code-runner.runInTerminal": true,
|
|
128
|
+
"bracket-pair-colorizer-2.depreciation-notice": false,
|
|
129
|
+
"debug.inlineValues": "on",
|
|
130
|
+
"debug.openDebug": "openOnDebugBreak",
|
|
131
|
+
"workbench.startupEditor": "none",
|
|
132
|
+
"explorer.confirmDelete": false,
|
|
133
|
+
"explorer.confirmDragAndDrop": false,
|
|
134
|
+
"explorer.confirmPasteNative": false,
|
|
135
|
+
"notebook.output.scrolling": true,
|
|
136
|
+
"notebook.output.textLineLimit": 100,
|
|
137
|
+
"path-autocomplete.extensionOnImport": true,
|
|
138
|
+
"path-autocomplete.pathMappings": {
|
|
139
|
+
"./*": "${folder}/*"
|
|
140
|
+
},
|
|
141
|
+
"[markdown]": {
|
|
142
|
+
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
|
|
143
|
+
},
|
|
144
|
+
"[html]": {
|
|
145
|
+
"editor.defaultFormatter": "vscode.html-language-features"
|
|
146
|
+
},
|
|
147
|
+
"[typescript]": {
|
|
148
|
+
"editor.rulers": [120],
|
|
149
|
+
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
150
|
+
},
|
|
151
|
+
"[typescriptreact]": {
|
|
152
|
+
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
153
|
+
},
|
|
154
|
+
"[jsonc]": {
|
|
155
|
+
"editor.defaultFormatter": "vscode.json-language-features"
|
|
156
|
+
},
|
|
157
|
+
"terminal.integrated.defaultProfile.windows": "Command Prompt",
|
|
158
|
+
"application.extensionMarketUrl": "https://marketplace.visualstudio.com/",
|
|
159
|
+
"[go]": {
|
|
160
|
+
"editor.defaultFormatter": "golang.go"
|
|
161
|
+
},
|
|
162
|
+
"[rust]": {
|
|
163
|
+
"editor.defaultFormatter": "rust-lang.rust-analyzer"
|
|
164
|
+
},
|
|
165
|
+
"workbench.secondarySideBar.defaultVisibility": "hidden",
|
|
166
|
+
"npm.packageManager": "bun",
|
|
167
|
+
"[python]": {
|
|
168
|
+
"editor.defaultFormatter": "charliermarsh.ruff"
|
|
169
|
+
},
|
|
170
|
+
"AI.toolcall.confirmMode": "autoRun",
|
|
171
|
+
"update.showReleaseNotes": false,
|
|
172
|
+
"explorer.compactFolders": false,
|
|
173
|
+
"rest-client.enableTelemetry": false,
|
|
174
|
+
"workbench.iconTheme": "material-icon-theme",
|
|
175
|
+
"workbench.view.showQuietly": {
|
|
176
|
+
"workbench.panel.output": false
|
|
177
|
+
},
|
|
178
|
+
"breadcrumbs.enabled": false,
|
|
179
|
+
"trae.tab.enableSummaryAutoDisplay": true,
|
|
180
|
+
"diffEditor.ignoreTrimWhitespace": false,
|
|
181
|
+
"go.lintTool": "golangci-lint-v2",
|
|
182
|
+
"liveServer.settings.donotVerifyTags": true,
|
|
183
|
+
"liveServer.settings.donotShowInfoMsg": true,
|
|
184
|
+
"cursor-infinity.autoOpenPanel": false,
|
|
185
|
+
"files.participants.timeout": 0,
|
|
186
|
+
"chat.detectParticipant.enabled": false,
|
|
187
|
+
"chat.disableAIFeatures": true
|
|
188
188
|
}
|