AI Square Documentation 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., "@AI Square Documentation MCP ServerSearch the docs for how to authenticate the Python SDK"
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.
AI Square Documentation MCP Server
The official, documentation-first Model Context Protocol (MCP) service for AI Square. It is designed to let MCP-compatible clients retrieve authoritative AI Square documentation, API reference material, SDK examples, guides, and troubleshooting information with traceable citations.
Current status: Phase 8 complete. The repository can crawl and incrementally index the configured AI Square documentation scope, then serve citation-safe hybrid retrieval through ten read-only MCP documentation tools and eight static
docs://resources, as well as its internal API. Bounded TTL/LRU caches cover search outcomes, query embeddings, exact pages, and categories; Redis is an optional shared L2 backend for container and production deployments. Structured latency/error metrics and deterministic unit, integration, retrieval-quality, CLI, and Streamable HTTP MCP tests run in CI with an 80% coverage floor. Operator runbooks, deployment guidance, maintenance workflows, and troubleshooting are included below.
Design principles
Documentation is the source of truth; the server does not synthesize facts from model memory.
Every indexed chunk retains a stable source URL, document identity, structure, and filterable metadata.
Interfaces separate transports, application services, and infrastructure so providers can be replaced without changing MCP tools.
Configuration and secrets come from environment variables; no credentials are committed.
Async I/O, structured logs, health checks, and container-first operation are baseline concerns rather than later additions.
Related MCP server: Markdown RAG MCP
Architecture
See the architecture guide for the design and the executable Phase 1–8 boundaries.
MCP clients / internal callers
│
├── MCP transport (stdio or Streamable HTTP)
└── FastAPI internal API
│
application ports
│
crawler → parser → structural chunker → embedding adapter → Qdrant
└──────────────────→ PostgreSQL
│
query ──► BM25 + dense search ──► reciprocal-rank fusion ──► reranker
│
cited, compact contextThe FastAPI API is for operational and internal integrations. MCP transports are the public AI-client interface. They share application services but neither transport is allowed to depend directly on provider-specific indexing or future retrieval code.
Repository layout
app/
api/ FastAPI application, routes, and HTTP contracts
config/ Typed settings and logging configuration
mcp/ Official MCP SDK host, public retrieval adapter, and transports
models/ Shared domain models (expanded with later phases)
services/ Application services for ingestion, indexing, and retrieval
crawler/ Documentation acquisition (Phase 2)
parser/ Structured document extraction (Phase 2)
chunking/ Heading-aware document chunking (Phase 3)
embeddings/ Provider-neutral embedding contracts and adapters (Phase 3)
retrieval/ Hybrid retrieval and context building (Phase 4)
database/ PostgreSQL metadata and Qdrant vector adapters (Phase 3)
cache/ Bounded TTL/LRU cache, safe codecs, and optional Redis L2 (Phase 7)
tests/ Unit, integration, and transport tests
docs/ Architecture, engineering, and operator documentation
docker/ Container runtime support files
scripts/ Explicit operational commands (added as phases need them)Quick start
Prerequisites: Python 3.12+, uv, Docker with Compose, and an embedding-provider API key for indexing.
# Run from the repository root.
cp .env.example .env
uv sync --all-groups
uv run aisquare-docs-apiThe API is available at http://127.0.0.1:8000. Useful endpoints are:
GET /health/live— process liveness, with no downstream checks.GET /health/ready— process/configuration readiness; it is degraded when local hybrid-search configuration is incomplete, while storage connectivity is verified by an index or retrieval run.GET /api/v1/status— service and phase capability status.POST /api/v1/index— incrementally index crawl artifacts through the internal API.POST /api/v1/reindex— force a complete indexing pass through the internal API.GET /api/v1/search— hybrid documentation search with filters and cited context.GET /api/v1/page— exact indexed-page lookup by canonical URL.GET /api/v1/examples— code-focused hybrid search.GET /api/v1/categories— available indexed source categories.GET /docs— OpenAPI documentation in development.
Run a respectful documentation crawl to create parsed artifacts:
uv run aisquare-docs-crawlIt writes deterministic structured JSON files and a run manifest under data/documents by default. Fetched HTML is used only in memory and is never written to an artifact. See the ingestion guide before changing crawl limits or the user agent.
To index the artifacts, put an embedding key in .env (for the default adapter, set AISQUARE_OPENAI_API_KEY), then start PostgreSQL and Qdrant and run the incremental indexer:
docker compose up -d postgres qdrant
uv run aisquare-docs-index
# or: make indexUse uv run aisquare-docs-index --force (or make reindex) to run a complete forced pass. Once PostgreSQL and Qdrant contain that index, the internal API can retrieve it with hybrid search. See the indexing guide for storage and re-indexing behavior, and the retrieval guide for search configuration and endpoint use.
For example, after indexing and starting the API:
curl -G http://127.0.0.1:8000/api/v1/search \
--data-urlencode 'query=How do I authenticate?'Set AISQUARE_REQUIRE_API_KEY=true and send X-API-Key outside a trusted local environment. The default Cohere reranking stage needs AISQUARE_COHERE_API_KEY; Voyage and Jina are selectable alternatives using their provider keys. Set AISQUARE_RERANKER_ENABLED=false to return deterministic RRF results without a reranker.
Run the MCP server over standard input/output for desktop MCP clients:
uv run aisquare-docs-mcpPhase 5 exposes ten read-only documentation tools—search, exact page retrieval,
API/reference, code/example, related-page, category, SDK, guide, and
troubleshooting access—plus static docs:// resources for the main
documentation areas. See the MCP usage guide for the complete
tool/resource contract, aliases, and stdio or Streamable HTTP setup.
For containerized local dependencies and the API:
docker compose up --buildSee development and configuration instructions for local setup and verified settings, the operations runbook for Docker and production deployment, and the MCP usage guide for client setup.
Documentation
Architecture explains the system boundaries, data flow, storage model, and retrieval guarantees.
Running locally and configuration covers setup, every supported environment variable, indexing, retrieval, and verification.
Adding or updating documentation and embeddings explains the safe crawl-to-index workflow, compatibility boundaries, and collection migration steps.
Crawler and artifact behavior documents source scope, robots handling, parsed artifacts, and failure behavior.
Retrieval behavior covers hybrid search, citations, reranking, and caching.
MCP client use documents stdio and Streamable HTTP transports, tools, resources, and diagnostics.
Docker and production operations provides deployment, startup, reindex, recovery, scaling, and rollback runbooks.
Troubleshooting maps safe symptoms, checks, and remediation steps to each subsystem.
Contributing describes the development workflow, quality gates, and repository invariants.
Phase plan
Foundation (complete): package, configuration, API/MCP hosts, Docker topology, logging, health checks, CI, and tests.
Ingestion (complete): respectful sitemap/robots-aware crawler, structured parser, and durable raw-HTML-free JSON document artifacts.
Indexing (complete): heading-aware chunks, provider-neutral embedding contracts, OpenAI embeddings, Qdrant vectors, PostgreSQL metadata, and incremental re-indexing.
Retrieval (complete): BM25 + dense retrieval, reciprocal-rank fusion, metadata filters, optional reranking, and citation-preserving context through the internal API.
MCP surface (complete): ten read-only documentation tools and static resources backed by the citation-safe retrieval service.
Quality (complete): integration, retrieval-quality, CLI, and end-to-end Streamable HTTP MCP suites, with an enforced 80% coverage floor.
Optimization (complete): bounded search/page/category/query-embedding caches, optional Redis L2 coherence and invalidation, cache metrics, and OpenTelemetry retrieval/embedding/error instrumentation.
Operations documentation (complete): runbooks, deployment guidance, contribution workflows, and troubleshooting.
Security notes
Use a separate API key per environment. Bind internal HTTP endpoints to a private network in production and put Streamable HTTP MCP behind TLS and your identity provider. The project deliberately keeps OAuth and tenant context at the boundary so they can be introduced without rewriting retrieval services.
Never use .env files as an artifact or image layer, and rotate any key that has been exposed.
Contributing
uv run ruff check .
uv run black --check .
uv run mypy app
uv run pytest
uv run pytest -m retrieval_quality
uv run pytest -m mcp_e2eSee CONTRIBUTING.md for the full contribution workflow and docs/DEVELOPMENT.md for the coding, testing, and configuration conventions.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceEnables MCP clients to access and read mdbook documentation, including structure, content, and search.Last updated103MIT
- Alicense-qualityDmaintenanceProvides semantic search over markdown documentation using RAG, allowing natural language queries and integration with MCP clients.Last updated1MIT
- Alicense-qualityDmaintenanceProvides RAG (Retrieval Augmented Generation) access to technical documentation through MCP, enabling LLMs to search and retrieve relevant documentation on-demand.Last updated4MIT
- Flicense-qualityDmaintenanceEnables AI assistants to intelligently search and reference documentation using hybrid semantic + keyword search via MCP protocol.Last updated
Related MCP Connectors
Query any docs site via MCP. Submit a URL, ask questions, get cited answers.
Apple Developer Documentation with Semantic Search, RAG, and AI reranking for MCP clients
Search @imqueue docs and scaffold typed services & clients from your AI coding agent.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/omkute101/AISquare-Docs-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server