mirror of
https://github.com/ArthurDanjou/artmcp.git
synced 2026-01-14 18:49:27 +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.
15 lines
421 B
TypeScript
15 lines
421 B
TypeScript
export default defineMcpPrompt({
|
|
description: 'Generates a prompt to retrieve the languages spoken by Arthur Danjou along with detailed proficiency levels for each language.',
|
|
handler: async () => {
|
|
return {
|
|
messages: [{
|
|
role: 'user',
|
|
content: {
|
|
type: 'text',
|
|
text: `What languages does Arthur Danjou speak and at what proficiency level?`
|
|
}
|
|
}]
|
|
}
|
|
}
|
|
})
|