fa-mcp-sdk 0.2.110 → 0.2.114
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/cli-template/.run/kill-server.run.xml +1 -1
- package/cli-template/config/_local.yaml +1 -1
- package/cli-template/fa-mcp-sdk-spec.md +1197 -0
- package/cli-template/src/prompts/agent-prompt.ts +9 -0
- package/cli-template/src/prompts/custom-prompts.ts +2 -2
- package/dist/core/errors/errors.d.ts +0 -3
- package/dist/core/errors/errors.d.ts.map +1 -1
- package/dist/core/errors/errors.js +0 -5
- package/dist/core/errors/errors.js.map +1 -1
- package/dist/core/index.d.ts +4 -3
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/index.js +5 -5
- package/dist/core/index.js.map +1 -1
- package/dist/core/token/token-auth.d.ts +0 -16
- package/dist/core/token/token-auth.d.ts.map +1 -1
- package/dist/core/token/token-auth.js +4 -4
- package/dist/core/token/token-auth.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<component name="ProjectRunConfigurationManager">
|
|
2
|
-
<configuration default="false" name="kill-port {{port}}" type="NodeJSConfigurationType" application-parameters="
|
|
2
|
+
<configuration default="false" name="kill-port {{port}}" type="NodeJSConfigurationType" application-parameters="{{port}}" path-to-js-file="scripts/kill-port.js" working-dir="$PROJECT_DIR$">
|
|
3
3
|
<method v="2" />
|
|
4
4
|
</configuration>
|
|
5
5
|
</component>
|
|
@@ -26,7 +26,7 @@ db:
|
|
|
26
26
|
main:
|
|
27
27
|
label: 'Your Database Label'
|
|
28
28
|
database: your_database
|
|
29
|
-
host: '
|
|
29
|
+
host: '' # To exclude the use of the database, you need to set host = ''
|
|
30
30
|
port: 5432
|
|
31
31
|
user: your_user
|
|
32
32
|
password: your_password
|