We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cbcoutinho/nextcloud-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
main.js•289 B
import { createApp } from 'vue'
import { translate as t, translatePlural as n } from '@nextcloud/l10n'
import App from './App.vue'
const app = createApp(App)
// Add translation methods globally
app.config.globalProperties.t = t
app.config.globalProperties.n = n
app.mount('#astrolabe')