Files
ask262/package.json
T
bendtherules 887ad3e5a4 feat(mcp-server): Add MCP server with tool registrations
Add MCP server implementation with support for:
- ask262_search_spec_sections tool
- ask262_get_section_content tool
- ask262_evaluate_in_engine262 tool
Includes proper error handling, input/output schemas, and structured
content responses.
2026-04-14 11:12:03 +05:30

47 lines
1.4 KiB
JSON

{
"name": "ask262",
"packageManager": "bun@1.2.8",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"type-check": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"lint:fix:unsafe": "biome check . --write --unsafe",
"format:fix": "biome format . --write",
"ingest": "bun run src/setup/ingest.ts",
"verify-db": "bun run src/test/manual/verify-db.ts",
"test-evaluate": "bun run src/test/manual/test-evaluate-in-engine262.ts",
"test-search-spec-sections": "bun run src/test/manual/test-search-spec-sections.ts",
"agent": "bun run src/agent.ts",
"build": "bun run src/setup/buildGraph.ts",
"mcp-server": "bun run src/mcp-server.ts",
"test-mcp-server": "bun run src/test/manual/test-mcp-server.ts",
"test": "bun test"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"type": "module",
"dependencies": {
"@lancedb/lancedb": "^0.5.0",
"@langchain/community": "0.2.0",
"@langchain/core": "^0.2.0",
"@langchain/ollama": "^0.1.0",
"@langchain/openai": "^0.1.0",
"@modelcontextprotocol/sdk": "^1.0.4",
"acorn": "^8.16.0",
"cheerio": "^1.2.0",
"glob": "^13.0.6",
"graphology": "^0.26.0",
"langchain": "^0.2.0",
"ora": "^9.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.9",
"bun-types": "^1.3.11",
"typescript": "^6.0.2"
}
}