mirror of
https://github.com/ArthurDanjou/artapi.git
synced 2026-01-14 15:44:22 +01:00
18 lines
556 B
TypeScript
18 lines
556 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 result = await $fetch('/api/contact')
|
|
|
|
return {
|
|
contents: [{
|
|
uri: uri.toString(),
|
|
mimeType: 'text/json',
|
|
text: JSON.stringify(result, null, 2)
|
|
}]
|
|
}
|
|
}
|
|
})
|