sf-architect-mcp
Scrapes, indexes, and serves Salesforce Architect documentation locally, enabling fast offline search and retrieval via RAG-powered keyword search with section and language filters.
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., "@sf-architect-mcpsearch architect docs for 'data modeling'"
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.
SF Architect MCP
An MCP server that scrapes, indexes, and serves the Salesforce Architect documentation locally — enabling fast, offline, RAG-powered search and retrieval for AI coding assistants.
Built with Model Context Protocol, cheerio, SQLite, and Turndown.
What it does
Scrapes
architect.salesforce.comusing fetch + cheerio (the site is server-side rendered)Indexes content into a local SQLite database with section-aware chunking
Searches using multi-term keyword scoring with section and language filters
Supports 17 languages mirroring the site's locale structure
Exposes MCP tools, resources, and prompts so your AI assistant can navigate and query the docs naturally
Related MCP server: Unified Salesforce Documentation MCP Server
Prerequisites
Node.js ≥ 18
No browser binary required — scraping uses plain HTTP requests
Installation
git clone https://github.com/morettimarco/salesforce_architect_MCP.git
cd salesforce_architect_MCP
npm install
npm run buildThe compiled server will be at dist/index.js.
Setup in your coding agent
Replace /absolute/path/to/sf-architect-mcp with the actual path where you cloned this repo.
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"sf-architect": {
"command": "node",
"args": ["/absolute/path/to/sf-architect-mcp/dist/index.js"]
}
}
}Claude Code (CLI)
claude mcp add sf-architect node /absolute/path/to/sf-architect-mcp/dist/index.jsOr edit ~/.claude/settings.json (global) or .claude/settings.json (project-level):
{
"mcpServers": {
"sf-architect": {
"command": "node",
"args": ["/absolute/path/to/sf-architect-mcp/dist/index.js"]
}
}
}Cursor
Edit .cursor/mcp.json in your project root (or ~/.cursor/mcp.json for global):
{
"mcpServers": {
"sf-architect": {
"command": "node",
"args": ["/absolute/path/to/sf-architect-mcp/dist/index.js"]
}
}
}Windsurf
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"sf-architect": {
"command": "node",
"args": ["/absolute/path/to/sf-architect-mcp/dist/index.js"]
}
}
}VS Code (GitHub Copilot)
Edit .vscode/mcp.json in your workspace:
{
"servers": {
"sf-architect": {
"type": "stdio",
"command": "node",
"args": ["/absolute/path/to/sf-architect-mcp/dist/index.js"]
}
}
}First-time setup
Once the server is running in your agent, use the scrape-docs prompt or call the tool directly:
scrape_full → language_filter: "en" (or your preferred language)This fetches the sitemap, scrapes all pages with Puppeteer, converts them to Markdown, and stores them in a local SQLite database at ~/.sf-architect-mcp/sf-architect.db.
A full English scrape takes roughly 2–3 minutes (≈ 115 pages, 3 concurrent requests).
Tools
Tool | Description |
| Wipe the database and re-scrape everything from scratch |
| Scrape only new, changed, or previously failed pages |
| Keyword search across indexed content with relevance scoring |
| Read a page's full Markdown content by URL (supports |
| Lightweight summary: title, headings, word count, 500-char preview |
| Page count, total words, and title list for a section |
| List all indexed sections with page counts |
| Export a full section to a single Markdown file on disk |
| Database stats: page counts, sections, last run, pending/failed URLs |
Resources
Attach these to your conversation context for orientation:
URI | Description |
| Recommended workflows and tool usage tips |
| All supported language codes with display names |
| Live section index with current page counts |
Prompts
Pre-built workflow templates:
Prompt | Arguments | What it does |
|
| Presents available languages, asks which to scrape, then runs the appropriate tool |
|
| Searches, summarizes relevant pages, and synthesizes findings with citations |
|
| Verifies the section exists, shows a summary, then exports to Markdown |
Supported languages
Code | Language |
| English (default) |
| German |
| French |
| Japanese |
| Chinese (Simplified) |
| Chinese (Traditional) |
| Danish |
| Spanish |
| Finnish |
| Italian |
| Korean |
| Dutch |
| Norwegian |
| Portuguese (Brazil) |
| Russian |
| Swedish |
| Spanish (Mexico) |
| All languages |
Note: Not all languages are available for all sections. The sitemap at scrape time determines what's actually published.
Configuration
The database is stored at ~/.sf-architect-mcp/sf-architect.db by default.
Override with an environment variable:
SF_ARCHITECT_DB_DIR=/custom/path node dist/index.jsExported markdown files go to ~/.sf-architect-mcp/exports/{section}-{language}.md unless you specify a custom path.
Architecture
src/
├── index.ts # MCP server — tools, resources, prompts
├── scraper.ts # fetch + cheerio scraper, concurrency pool
├── sitemap.ts # Sitemap fetching and URL filtering
├── types.ts # Shared TypeScript types
├── db/
│ ├── database.ts # sql.js SQLite, persistence, schema
│ ├── ingest.ts # Page upsert, chunk sync, scrape run tracking
│ └── queries.ts # Search, read, export, stats
└── utils/
├── chunker.ts # Section-aware text chunking (1500 chars, 200 overlap)
└── url-utils.ts # Language detection from URL path segmentsKey design decisions:
fetch + cheerio — the site is fully server-side rendered, no headless browser needed. ~10x faster and cross-platform with zero native dependencies
sql.js (WASM SQLite) — in-process, zero native dependencies, serialized to disk after every 10 pages
Section-aware chunking — detects both Markdown headings and bold-text markers (
**Definition:**) which the site uses instead of semantic HTML headingsLRU cache on search results (500 entries, 5-minute TTL)
Content hash comparison for incremental scraping — only re-indexes pages whose content has actually changed
License
MIT
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.
Appeared in Searches
Latest Blog Posts
- 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/morettimarco/salesforce_architect_MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server