Skip to content

Commit 982be27

Browse files
committed
Fix some config
1 parent 4760af7 commit 982be27

File tree

3 files changed

+23
-20
lines changed

3 files changed

+23
-20
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ Add this to your `claude_desktop_config.json`:
2929
"run",
3030
"-i",
3131
"--rm",
32-
"-e DISCOURSE_API_URL=https://try.discourse.org",
33-
"-e DISCOURSE_API_KEY=1234",
34-
"-e DISCOURSE_API_USERNAME=ash",
32+
"-e", "DISCOURSE_API_URL=https://try.discourse.org",
33+
"-e", "DISCOURSE_API_KEY=1234",
34+
"-e", "DISCOURSE_API_USERNAME=ash",
3535
"ashdev/discourse-mcp-server"
3636
]
3737
}

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "@ashdev/discourse-mcp-server",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"homepage": "https://github.com/AshDevFr/discourse-mcp-server",
55
"bugs": "https://github.com/AshDevFr/discourse-mcp-server/issues",
66
"main": "index.js",
77
"type": "module",
88
"bin": {
9-
"discourse": "./build/index.js"
9+
"discourse-mcp-server": "./build/index.js"
1010
},
1111
"scripts": {
1212
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",

tsconfig.json

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
{
2-
"compilerOptions": {
3-
"target": "ES2022",
4-
"module": "NodeNext",
5-
"moduleResolution": "NodeNext",
6-
"outDir": "./build",
7-
"rootDir": "./src",
8-
"strict": true,
9-
"esModuleInterop": true,
10-
"skipLibCheck": true,
11-
"forceConsistentCasingInFileNames": true,
12-
"noUncheckedIndexedAccess": true
13-
},
14-
"include": ["src/**/*"],
15-
"exclude": ["node_modules"]
16-
}
2+
"compilerOptions": {
3+
"target": "ES2022",
4+
"module": "NodeNext",
5+
"moduleResolution": "NodeNext",
6+
"outDir": "./build",
7+
"rootDir": "./src",
8+
"strict": true,
9+
"esModuleInterop": true,
10+
"skipLibCheck": true,
11+
"forceConsistentCasingInFileNames": true
12+
},
13+
"include": [
14+
"src/**/*"
15+
],
16+
"exclude": [
17+
"node_modules"
18+
]
19+
}

0 commit comments

Comments
 (0)