Files
artapi/package.json
Arthur DANJOU 2a1c6369f3 Refactor MCP API: Remove deprecated endpoints and add new resource handlers
- Deleted old API endpoints for contact, education, experiences, hobbies, languages, profile, projects, skills, and uses.
- Introduced new resource handlers for contact, education, experiences, hobbies, languages, profile, projects, skills, and uses with structured responses.
- Added new MCP prompts for real-time activity, contact information, hobbies, languages, profile, projects, skills, stats, and status page.
- Implemented tools for fetching real-time activity, resume links, coding stats, and weather information.
- Removed legacy MCP server route and replaced it with a modular approach for better maintainability.
2025-11-30 14:54:37 +01:00

33 lines
734 B
JSON

{
"name": "artmcp",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "npx nuxthub preview",
"deploy": "npx nuxthub deploy",
"postinstall": "nuxt prepare",
"lint": "eslint ."
},
"dependencies": {
"@nuxt/content": "3.8.2",
"@nuxt/eslint": "1.11.0",
"@nuxthub/core": "0.9.1",
"@nuxtjs/mcp-toolkit": "0.4.1",
"better-sqlite3": "12.5.0",
"nuxt": "4.2.1",
"vue": "3.5.25",
"vue-router": "4.6.3",
"zod": "4.1.13"
},
"devDependencies": {
"@nuxt/eslint-config": "1.11.0",
"eslint": "9.39.1",
"typescript": "5.9.3",
"vue-tsc": "3.1.5",
"wrangler": "4.51.0"
}
}