mirror of
https://ghfast.top/https://github.com/discourse/discourse-mcp.git
synced 2026-07-15 11:36:36 +08:00
57 lines
1.3 KiB
JSON
57 lines
1.3 KiB
JSON
{
|
|
"name": "@discourse/mcp",
|
|
"mcpName": "io.github.discourse/mcp",
|
|
"version": "0.2.5",
|
|
"description": "Discourse MCP CLI server (stdio) exposing Discourse tools via MCP",
|
|
"author": "Discourse",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"discourse",
|
|
"mcp"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/discourse/discourse-mcp.git"
|
|
},
|
|
"homepage": "https://github.com/discourse/discourse-mcp#readme",
|
|
"private": false,
|
|
"type": "module",
|
|
"bin": {
|
|
"discourse-mcp": "dist/index.js"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"prepublishOnly": "pnpm build",
|
|
"dev": "node --enable-source-maps dist/index.js",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint src",
|
|
"clean": "rm -rf dist",
|
|
"sync:fixtures": "node scripts/sync-fixtures.mjs",
|
|
"test": "node --test dist/test/**/*.js"
|
|
},
|
|
"files": [
|
|
"dist/**",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"engines": {
|
|
"node": ">=24"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.2",
|
|
"@types/node": "^20.14.10",
|
|
"eslint": "^9.39.2",
|
|
"typescript": "^5.5.4",
|
|
"typescript-eslint": "^8.53.1"
|
|
},
|
|
"packageManager": "pnpm@10.14.0"
|
|
}
|