mirror of
https://github.com/ArthurDanjou/artapi.git
synced 2026-01-14 17:34: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.
22 lines
656 B
TypeScript
22 lines
656 B
TypeScript
export default defineMcpResource({
|
|
title: 'Arthur Danjou - Contact Information & Social Media Links',
|
|
description: 'Contact information and social media links for Arthur Danjou, including email, LinkedIn, GitHub, Twitter, Discord, and personal websites',
|
|
uri: 'resource://artmcp/contact',
|
|
cache: '1 hour',
|
|
handler: async (uri: URL) => {
|
|
const event = useEvent()
|
|
|
|
const result = await queryCollection(event, 'contact')
|
|
.where('extension', '=', 'json')
|
|
.first()
|
|
|
|
return {
|
|
contents: [{
|
|
uri: uri.toString(),
|
|
mimeType: 'text/json',
|
|
text: JSON.stringify(result.body, null, 2)
|
|
}]
|
|
}
|
|
}
|
|
})
|