Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
mcp-confluence
by
mouhamadalmounayar
Verified
npm
GitHub
Developer Tools
TypeScript
MIT License
14
9
Reddit
Discord
Overview
Inspect
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
src
utils
src/utils/index.ts
export const getTextContent = (doc: any) => { if (doc.type === "text") { return doc.text; } else if (doc.content) { return doc.content.map(getTextContent).join(" "); } return ""; };