diff --git a/src/resources.ts b/src/resources.ts index 0bf56c6..25619bc 100644 --- a/src/resources.ts +++ b/src/resources.ts @@ -70,4 +70,24 @@ export const NEON_RESOURCES = [ }; }, }, + { + name: 'neon-get-started', + uri: 'https://github.com/neondatabase-labs/ai-rules/blob/main/neon-get-started.mdc', + mimeType: 'text/markdown', + description: 'Neon getting started guide', + handler: async (url) => { + const uri = url.host; + const rawPath = url.pathname; + const content = await fetchRawGithubContent(rawPath); + return { + contents: [ + { + uri, + mimeType: 'text/markdown', + text: content, + }, + ], + }; + }, + }, ] satisfies (Resource & { handler: ReadResourceCallback })[];