bailian-test-server
Version:
A simple MCP server for fetching weather information from NWS API.
42 lines (41 loc) • 819 B
JSON
{
"name": "bailian-test-server",
"version": "0.0.2",
"description": "A simple MCP server for fetching weather information from NWS API.",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"bailian-test-server": "build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc -w",
"prepublishOnly": "npm run build"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"model-context-protocol",
"weather",
"nws",
"ai",
"llm",
"agent"
],
"author": "Jerry",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.12.12",
"typescript": "^5.4.5"
}
}