We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dougwithseismic/withseismic-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { Mastra } from "@mastra/core/mastra";
import { createLogger } from "@mastra/core/logger";
import { weatherWorkflow } from "./workflows";
import { weatherAgent } from "./agents";
export const mastra = new Mastra({
workflows: { weatherWorkflow },
agents: { weatherAgent },
telemetry: {
enabled: false,
},
logger: createLogger({
name: "Mastra",
level: "info",
}),
});