feat: initialize project with package.json and tsconfig.json
Some checks failed
Build and Package DXT / build (push) Failing after 47s
Some checks failed
Build and Package DXT / build (push) Failing after 47s
- Added package.json for project dependencies and scripts - Included TypeScript configuration in tsconfig.json
This commit is contained in:
commit
a433ac337d
8 changed files with 696 additions and 0 deletions
BIN
assets/icon.png
Normal file
BIN
assets/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 111 KiB |
32
assets/manifest.json
Normal file
32
assets/manifest.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"dxt_version": "0.1",
|
||||
"name": "siwat-system-portal",
|
||||
"version": "1.0.0",
|
||||
"description": "Siwat System MCP Extension for Siwat System API",
|
||||
"author": {
|
||||
"name": "Siwat Sirichai"
|
||||
},
|
||||
"server": {
|
||||
"type": "node",
|
||||
"entry_point": "index.js",
|
||||
"mcp_config": {
|
||||
"command": "node",
|
||||
"args": [
|
||||
"${__dirname}/index.js",
|
||||
"--header",
|
||||
"x-api-key:${user_config.api_key}",
|
||||
"https://api.siwatsystem.com/api/mcp"
|
||||
],
|
||||
"env": {}
|
||||
}
|
||||
},
|
||||
"user_config": {
|
||||
"api_key": {
|
||||
"type": "string",
|
||||
"title": "API Key",
|
||||
"description": "Your Siwat System API key for authentication",
|
||||
"sensitive": true,
|
||||
"required": true
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue