{ "name": "dfa-mcp-server", "version": "1.0.0", "description": "DFA-based workflow MCP server for guiding LLM task completion", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "dfa-mcp-server": "dist/index.js" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "dev": "tsx src/index.ts", "start": "node dist/index.js", "test": "echo \"No tests yet\"", "prepublishOnly": "npm run build" }, "keywords": [ "mcp", "workflow", "state-machine", "dfa", "model-context-protocol", "llm", "ai", "automation", "finite-automata", "workflow-engine" ], "author": "DFA MCP Server Contributors", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/your-username/dfa-mcp-server.git" }, "homepage": "https://github.com/your-username/dfa-mcp-server#readme", "bugs": { "url": "https://github.com/your-username/dfa-mcp-server/issues" }, "engines": { "node": ">=18.0.0" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "zod": "^3.0.0" }, "devDependencies": { "@types/node": "^20.0.0", "tsx": "^4.0.0", "typescript": "^5.0.0" } }