Skip to main content
Glama

Confluence MCP Server

by Olson3R
types.ts1.79 kB
export interface ConfluenceConfig { baseUrl: string; username: string; apiToken: string; allowedSpaces: string[]; debug?: boolean; } export interface ConfluencePage { id: string; type: string; status: string; title: string; space: { key: string; name: string; }; body?: { storage?: { value: string; representation: string; }; view?: { value: string; representation: string; }; }; version: { number: number; when: string; by: { displayName: string; email: string; }; }; _links: { webui: string; self: string; }; } export interface ConfluenceSpace { id: string; key: string; name: string; type: string; status: string; _links: { webui: string; self: string; }; } export interface SearchResult { content: ConfluencePage[]; start: number; limit: number; size: number; _links: { next?: string; prev?: string; }; } export interface CreatePageRequest { spaceId: string; status: string; title: string; body: { representation: string; value: string; }; parentId?: string; } export interface UpdatePageRequest { id: string; status: string; title: string; type: string; version: { number: number; }; body: { storage: { value: string; representation: string; }; }; } export interface MovePageRequest { version: { number: number; }; title: string; type: string; space: { key: string; }; ancestors?: Array<{ id: string; }>; } export interface PaginatedResult<T> { results: T[]; start: number; limit: number; size: number; _links: { next?: string; prev?: string; base?: string; context?: string; self?: string; }; }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Olson3R/confluence-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server