FoundryIQ stdio MCP Server
Enables querying the FoundryIQ RFP knowledge base via Azure AI Search, returning relevant grounding chunks for answer synthesis.
README
FoundryIQ stdio MCP Server
Exposes the FoundryIQ (Azure AI Search) RFP knowledge base as a native MCP tool
(knowledge_base_retrieve) over stdio, so an MCP client (VS Code, GitHub Copilot
CLI, etc.) can call it directly instead of shelling out to a script per question.
A fresh Azure AD access token (scoped to search.azure.com) is minted on every
tool call via the Azure CLI (az account get-access-token) — nothing is
hardcoded and the token never goes stale.
Prerequisites
- Python 3.10+ (this project was verified with Python 3.13)
- Azure CLI installed and logged in:
You must have access to the tenant/subscription that hosts the FoundryIQ search service referenced inaz loginconfig.json(the server requests a token for that specific tenant, so it works even if it differs from your CLI's active tenant/subscription).
Setup
- Create and activate a virtual environment (already present as
.venv/in this repo — recreate it if missing):python -m venv .venv .\.venv\Scripts\Activate.ps1 - Install dependencies:
pip install -r requirements.txt - Copy
config.example.jsontoconfig.jsonand fill in your knowledge base settings:Copy-Item config.example.json config.json{ "endpoint": "https://<your-search-service>.search.windows.net", "kb_name": "<your-knowledge-base-name>", "api_version": "2026-05-01-preview", "token_resource": "https://search.azure.com", "tenant_id": "<tenant-guid>", "subscription_id": "<subscription-guid>" }tenant_id/subscription_idare optional but recommended when the knowledge base lives in a different tenant/subscription than your CLI's default login context.config.jsonis gitignored — it holds your real values and should never be committed.
Running standalone (sanity check)
The server speaks MCP JSON-RPC over stdio, so running it directly will just block waiting for input on stdin — that's expected:
.\.venv\Scripts\python.exe foundryiq_mcp_server.py --config config.json
Press Ctrl+C to stop. This is only useful to confirm the process starts
without import/config errors; normally an MCP client launches and drives it.
Registering with an MCP client
VS Code (mcp.json)
Add an entry to your workspace or user mcp.json (Command Palette →
"MCP: Open User Configuration", or a .vscode/mcp.json in this repo):
{
"servers": {
"foundryiq": {
"type": "stdio",
"command": "c:\\Users\\sansri\\stdio-mcpservers\\foundryiq-rfp-kb\\.venv\\Scripts\\python.exe",
"args": [
"c:\\Users\\sansri\\stdio-mcpservers\\foundryiq-rfp-kb\\foundryiq_mcp_server.py",
"--config",
"c:\\Users\\sansri\\stdio-mcpservers\\foundryiq-rfp-kb\\config.json"
]
}
}
}
GitHub Copilot CLI (and Microsoft Scout, which rides on it)
The Copilot CLI reads its MCP server registrations from
~/.copilot/mcp-config.json (i.e. C:\Users\<you>\.copilot\mcp-config.json
on Windows). Add/update the foundryiq entry there:
{
"mcpServers": {
"foundryiq": {
"type": "local",
"command": "C:\\Users\\sansri\\stdio-mcpservers\\foundryiq-rfp-kb\\.venv\\Scripts\\python.exe",
"args": [
"C:\\Users\\sansri\\stdio-mcpservers\\foundryiq-rfp-kb\\foundryiq_mcp_server.py",
"--config",
"C:\\Users\\sansri\\stdio-mcpservers\\foundryiq-rfp-kb\\config.json"
],
"tools": ["knowledge_base_retrieve"]
}
}
}
Note the schema differs slightly from VS Code's mcp.json: Copilot CLI uses
"mcpServers" (not "servers") and "type": "local" (not "stdio"), but
the underlying mechanism is identical — a local subprocess over stdin/stdout,
no URL/port involved. Microsoft Scout calls into the same Copilot CLI MCP
config, so registering it here also makes knowledge_base_retrieve callable
from Scout. Restart Scout / start a new Copilot CLI session after editing
this file for the change to take effect.
Microsoft Scout "Add MCP Server" dialog (GUI alternative)
Scout also has a GUI front-end for the same mcp-config.json — if you'd
rather not hand-edit the file, use its Add MCP Server dialog instead
(check first whether foundryiq already shows up in Scout's server list from
the file edit above; if so, skip this to avoid a duplicate registration):
- Name:
foundryiq-rfp-kb - Remote/Local: Command
- Command (paste as one combined string):
C:\Users\sansri\stdio-mcpservers\foundryiq-rfp-kb\.venv\Scripts\python.exe C:\Users\sansri\stdio-mcpservers\foundryiq-rfp-kb\foundryiq_mcp_server.py --config C:\Users\sansri\stdio-mcpservers\foundryiq-rfp-kb\config.json - Environment variables: leave blank (auth comes from your existing
az loginsession, not env vars) - Tool-call timeout: the default (~60s) is usually fine, but consider ~90s for headroom — the retrieval pipeline does query planning + parallel search + semantic rerank plus a fresh token mint on every call.
Other MCP clients
Point the client's server registration at the same venv Python + script +
--config path shown above. Use absolute paths so the server resolves
correctly regardless of the client's working directory.
Microsoft Scout skill (SKILL.md)
This repo also includes SKILL.md — a Scout skill that teaches the
agent how to use the registered foundryiq-rfp-kb-knowledge_base_retrieve
MCP tool correctly (call it directly instead of shelling out, treat the
returned chunks as the only source of truth, always append a citation-naming
instruction to the query, never decompose the user's request into
sub-questions, etc.).
Registering the MCP server (steps above) is not enough on its own — Scout needs this skill imported separately so the agent knows these usage rules exist and when to invoke the tool. Two things have to both be true for Scout to use this correctly:
- The
foundryiqMCP server is registered in~/.copilot/mcp-config.json(see the GitHub Copilot CLI section above) — this is what makes thefoundryiq-rfp-kb-knowledge_base_retrievetool exist at all. - SKILL.md is imported into Scout's Skills/Extensions. In
Scout, add this skill via its extensions/skills UI (import from this repo
path) so the skill's
name/descriptionfrontmatter is indexed and Scout knows to route FoundryIQ/knowledge-base questions through this tool with the correct calling convention.
After importing, restart Scout (or start a new session) so it re-discovers both the MCP tool and the skill.
Config resolution order
--config flag → FOUNDRYIQ_CONFIG env var → config.json in the process's
current working directory. Individual FOUNDRYIQ_* env vars
(FOUNDRYIQ_ENDPOINT, FOUNDRYIQ_KB_NAME, FOUNDRYIQ_API_VERSION,
FOUNDRYIQ_TOKEN_RESOURCE, FOUNDRYIQ_TENANT_ID, FOUNDRYIQ_SUBSCRIPTION_ID)
override individual fields on top of whatever config file was loaded.
Exposed tool
knowledge_base_retrieve(queries: list[str]) -> str— runs the knowledge base's agentic retrieval pipeline and returns the retrieved grounding chunks as Markdown (### Reference Nblocks withref_id+ content). It returns source chunks only; the caller/model synthesizes the final answer from them.
Troubleshooting
Failed to acquire Azure Search token. Run 'az login' first.— your CLI session expired or doesn't have access to the tenant/subscription inconfig.json. Re-runaz login(andaz login --tenant <tenant_id>if needed).- No config found — ensure
config.jsonexists next to the script, or pass--config <path>/ setFOUNDRYIQ_CONFIG. - Stray output breaking the client — all logging must go to stderr (this
is already handled in
foundryiq_mcp_server.py); don't addprint()calls that write to stdout.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。