GCC Docs MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GCC Docs MCP Serversecurity groups port 22"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
GCC Docs MCP Server
An MCP (Model Context Protocol) server that indexes Singapore Government GCC documentation and exposes search tools for AI assistants. Works with Kiro, Claude Desktop, Cline, and any MCP-compatible client.
Quick Start
Prerequisites
Python 3.11+
Git
gcc-docs-sourceoftruth cloned as a sibling folder
Setup
# Clone both repos side by side
git clone https://github.com/Fredwong76/gcc-docs-sourceoftruth.git sourceoftruth
git clone https://github.com/Fredwong76/gcc-docs-mcp-server.git gcc-docs-mcp-server
# Install the MCP server
cd gcc-docs-mcp-server
pip install -e .Configure your MCP client
Add to your MCP settings (e.g. ~/.kiro/settings/mcp.json):
{
"mcpServers": {
"gcc-docs": {
"command": "python",
"args": ["-m", "server.cli"],
"cwd": "/absolute/path/to/gcc-docs-mcp-server",
"disabled": false,
"autoApprove": ["search_docs", "get_page", "list_topics"]
}
}
}Replace /absolute/path/to/gcc-docs-mcp-server with the actual path on your machine.
Related MCP server: mcp-docs
What it does
On startup the server:
Runs
git pullon the sourceoftruth folder (gets latest docs from collaborators)Discovers all markdown files in the sourceoftruth folder
Builds a full-text search index (Whoosh/BM25F)
Exposes 3 MCP tools via stdio transport
Tools
Tool | Description | Example |
| Full-text search across all indexed docs | "security groups port 22" |
| Retrieve full content of a specific page | "TechPass/reset-password.md" |
| Browse documentation hierarchy | parent="TechPass" |
Configuration
The server finds the sourceoftruth folder using this precedence:
--crawl-store <path>CLI argumentSOURCEOFTRUTH_PATHenvironment variableDefault:
../sourceoftruth(sibling directory)
Folder Structure
parent-folder/
sourceoftruth/ <-- git clone of gcc-docs-sourceoftruth
GCC/
TechPass/
Cloudscape/
...
gcc-docs-mcp-server/ <-- this repo
server/ <-- MCP server code
crawler/ <-- Playwright-based crawler (optional)
postprocessing/ <-- PDF-to-MD converterDevelopment
# Install with dev dependencies
pip install -e ".[dev]"
# Run tests
pytest tests/ --ignore=tests/integration
# Run the server directly
python -m server.cliAdding Documents
See the sourceoftruth README for how to contribute documentation.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/Fredwong76/gcc-docs-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server