feat(mcps): add wiki/packages/releases/projects to gitea + new umami & serpbear MCPs

This commit is contained in:
2026-03-05 10:52:05 +01:00
parent dca35a9900
commit 5c10eb0009
11 changed files with 985 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
import { config } from 'dotenv';
import { resolve } from 'path';
import { fileURLToPath } from 'url';
const __dirname = fileURLToPath(new URL('.', import.meta.url));
config({ path: resolve(__dirname, '../../../.env.local') });
config({ path: resolve(__dirname, '../../../.env') });
import('./index.js').catch(err => {
console.error('Failed to start Umami MCP Server:', err);
process.exit(1);
});