mirror of
https://github.com/ArthurDanjou/artmcp.git
synced 2026-01-14 14:54:22 +01:00
- 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.
70 lines
962 B
TypeScript
70 lines
962 B
TypeScript
export default defineNuxtConfig({
|
|
|
|
modules: [
|
|
'@nuxthub/core',
|
|
'@nuxt/eslint',
|
|
'@nuxt/content',
|
|
'@nuxtjs/mcp-toolkit'
|
|
],
|
|
|
|
devtools: {
|
|
enabled: true,
|
|
|
|
timeline: {
|
|
enabled: true
|
|
}
|
|
},
|
|
|
|
runtimeConfig: {
|
|
public: {
|
|
helloText: 'Hello from the Edge 👋'
|
|
},
|
|
discord: {
|
|
userId: '',
|
|
id: '',
|
|
token: ''
|
|
},
|
|
statusPage: '',
|
|
wakatime: {
|
|
userId: '',
|
|
coding: '',
|
|
editors: '',
|
|
languages: '',
|
|
os: ''
|
|
}
|
|
},
|
|
|
|
future: { compatibilityVersion: 4 },
|
|
experimental: {
|
|
asyncContext: true
|
|
},
|
|
compatibilityDate: '2025-11-12',
|
|
|
|
nitro: {
|
|
experimental: {
|
|
openAPI: true
|
|
}
|
|
},
|
|
|
|
hub: {
|
|
database: true,
|
|
ai: true,
|
|
analytics: true,
|
|
cache: true
|
|
},
|
|
|
|
eslint: {
|
|
config: {
|
|
stylistic: {
|
|
quotes: 'single',
|
|
commaDangle: 'never'
|
|
}
|
|
}
|
|
},
|
|
|
|
mcp: {
|
|
name: 'ArtMCP',
|
|
version: '1.0.0'
|
|
}
|
|
})
|