Skip to main content
Glama

list_wiki_pages

Retrieve wiki pages from a specific project on the Taiga platform using session and project IDs for efficient project documentation management.

Instructions

Lists wiki pages within a specific project.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYes
session_idYes

Implementation Reference

  • The handler function for the 'list_wiki_pages' MCP tool. It retrieves wiki pages for a specified project using the authenticated Taiga client wrapper by calling taiga_client_wrapper.api.wiki.list(project_id=project_id).
    def list_wiki_pages(session_id: str, project_id: int) -> List[Dict[str, Any]]: """Lists wiki pages for a project.""" logger.info( f"Executing list_wiki_pages for project {project_id}, session {session_id[:8]}...") taiga_client_wrapper = _get_authenticated_client(session_id) # Use wrapper variable name try: # Use pytaigaclient syntax: client.wiki.list(project_id=...) pages = taiga_client_wrapper.api.wiki.list(project_id=project_id) # return [p.to_dict() for p in pages] # Remove .to_dict() return pages # Return directly except TaigaException as e: logger.error( f"Taiga API error listing wiki pages for project {project_id}: {e}", exc_info=False) raise e except Exception as e: logger.error( f"Unexpected error listing wiki pages for project {project_id}: {e}", exc_info=True) raise RuntimeError(f"Server error listing wiki pages: {e}")

Latest Blog Posts

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/talhaorak/pytaiga-mcp'

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