@behavioralstate/best-mcp 2.0.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/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@behavioralstate/best-mcp",
3
+ "version": "2.0.0",
4
+ "description": "MCP server for any BEST-compliant endpoint — exposes commands and queries as tools for LLM clients",
5
+ "type": "module",
6
+ "bin": {
7
+ "best-mcp": "dist/index.js"
8
+ },
9
+ "scripts": {
10
+ "build": "tsc",
11
+ "dev": "tsx src/index.ts",
12
+ "start": "node dist/index.js"
13
+ },
14
+ "dependencies": {
15
+ "@modelcontextprotocol/sdk": "^1.10.1"
16
+ },
17
+ "devDependencies": {
18
+ "@types/node": "^24.0.0",
19
+ "tsx": "^4.21.0",
20
+ "typescript": "^5.9.3"
21
+ }
22
+ }