- Add 6 MCP server documentation pages (bc-code-intelligence, al-dependency, azure-devops, serena, al-objid, clockify) - Add AI Coding Agents documentation (GitHub Copilot, Claude, Cursor) - Add Getting Started section (what is agentic coding, setup, prompting, best practices, limitations, glossary) - Add Getting More section (code review, documentation, telemetry examples) - Add Community Resources placeholders (articles, videos, tools) - Update Tools section to focus on MCP servers instead of VSCode extensions
1.5 KiB
1.5 KiB
| title | linkTitle | weight | description |
|---|---|---|---|
| AL Dependency MCP Server | AL Dependency MCP | 2 | Expose AL workspace compiled symbols to AI assistants for intelligent code navigation and dependency analysis |
Overview
The AL Dependency MCP Server exposes all compiled AL package symbols (.app files) to AI assistants, enabling them to understand dependencies, navigate code, and provide accurate suggestions based on Microsoft base app and other extension symbols.
Created by: Stefan Maron
Key Features
Symbol Database:
- O(1) lookup performance via optimized indices
- Streaming JSON parser for large symbol files (handles 50MB+ Microsoft base app)
- Sub-100ms query responses
- <500MB memory usage even with massive symbol databases
6 Token-Optimized Tools:
al_search_objects- Search for AL objects across all packagesal_get_object_definition- Get full object definition with all membersal_get_object_summary- Get token-optimized summary (96% smaller)al_get_object_members- Get object members without full definitional_packages- List all available AL packagesal_get_stats- Get database statistics and diagnostics
Auto-Discovery:
- Automatically finds .alpackages directories in your workspace
- Detects package changes in real-time
- Supports multiple package sources
Requirements: Node.js 18+, .NET SDK 8.0+ (for development)