fno-intelligence-engine
Enables AI coding assistants to ground on real D365 F&O AOT metadata locally and offline, preventing hallucinated X++ field names and Chain of Command signatures.
README
D365 F&O Developer Intelligence Engine
A local, offline MCP (Model Context Protocol) server that grounds AI coding assistants (Cursor, Claude Code, GitHub Copilot) on real Dynamics 365 Finance & Operations AOT metadata — so they stop hallucinating field names, method signatures, and Chain of Command (CoC) wrappers when generating X++ code.
Status: early build, Part 1 (metadata ingestion) in progress. Not yet a working MCP server. See Project Status below.
The problem
D365 F&O stores its entire application model (tables, classes, forms,
extended data types) as XML under PackagesLocalDirectory — often
500,000+ objects per environment. AI coding assistants have never seen
this XML; they only know generic X++ syntax from training. Ask one to
extend a table or write a Chain of Command wrapper, and it will
confidently reference fields and methods that don't exist in your
environment. This isn't a prompting problem — the AI is missing data,
not instructions.
The approach
- Ingestion (this repo, in progress) — parse raw AxTable/AxClass XML
into structured, correct JSON using
lxml, with regex extraction for Chain of Command patterns embedded in X++ source text. - Indexing (planned) — load parsed metadata into SQLite + FTS5 for sub-10ms local lookups.
- Exposure (planned) — expose the index to AI agents as MCP tools
(
get_table_schema,find_coc_methods, etc.) over stdio. - Advanced modules (planned) — a pattern-based X++ best-practices linter, then a cross-model dependency graph.
What's actually built right now
schema/table_schema.json— JSON Schema for parsed AxTable metadata, validated against a realVendTranstable exportschema/class_schema.json— JSON Schema for parsed AxClass / Chain of Command metadata. Not yet validated against a full real class file (see file header for details)parse_table.py— working parser: AxTable XML → schema-conformant JSONparse_class.py— regex-based CoC extractor. Written but not yet run against real class bytes — treat every regex here as unprovenvalidate.py— validates parser output against the JSON Schema
Project status
This project is a work in progress, built as a learning exercise while studying D365 F&O development. Some concrete facts worth stating plainly:
- A mature, actively maintained open-source project already solves this
problem at a larger scope: dynamics365ninja/d365fo-mcp-server
(26 MCP tools, live environment connection, form pattern engine, safe
metadata writes via Microsoft's
IMetadataProvider). This repo does not claim to improve on it or compete with it. - This project differs in scope and design, not necessarily in quality: Python instead of TypeScript, read-only and built against static AOT XML exports rather than a live environment connection, and currently limited to the ingestion layer only.
- The value of this project, honestly stated, is in understanding the problem and the parsing/indexing approach deeply enough to explain the design decisions — not in being first or unique.
Requirements
- Python 3.10+
lxmljsonschema(for schema validation during development)
pip install lxml jsonschema
Fixtures
Fixtures are AOT XML exports from a local, offline Hyper-V VM running
Microsoft's standard USMF/DAT demo data, plus a custom model built from
scratch with no third-party or organizational IP. See
fixtures/tables/ and fixtures/classes/ — populate these locally with
your own exports; they are not included in this template.
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。
mcp-server-qdrant
这个仓库展示了如何为向量搜索引擎 Qdrant 创建一个 MCP (Managed Control Plane) 服务器的示例。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。