partnercore-proxy 0.4.1 → 0.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,60 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.4.2] - 2024-12-27
11
+
12
+ ### Summary
13
+ Complete MCP server for Business Central AL development with 57+ tools spanning AL Language Server, BC Containers, Git, Project Memory, and Cloud AI services.
14
+
15
+ ### Highlights
16
+ - **57+ Development Tools** - Complete toolchain for professional AL development
17
+ - **Full LSP Coverage** - All standard Language Server Protocol features implemented
18
+ - **BC Container Integration** - Create, compile, publish, and test in Docker containers
19
+ - **Git Operations** - Full version control from AI agents
20
+ - **Project Memory** - Persistent context across development sessions
21
+ - **Cloud AI Tools** - Code review, knowledge base, templates (optional)
22
+
23
+ ### Documentation
24
+ - Refreshed all documentation with current date
25
+ - Updated installation and configuration guides
26
+ - Comprehensive workflow documentation in docs/WORKFLOWS.md
27
+ - AI assistant guidelines for all major platforms (Cursor, Claude, Copilot)
28
+
29
+ ### Tool Categories
30
+
31
+ #### AL Language Server (26 tools)
32
+ - Core: `al_get_diagnostics`, `al_get_symbols`, `al_find_symbol`, `al_find_references`, `al_go_to_definition`, `al_hover`, `al_completion`
33
+ - Advanced: `al_code_actions`, `al_signature_help`, `al_format`, `al_rename_symbol`, `al_type_definition`, `al_implementation`
34
+ - Document: `al_document_highlight`, `al_folding_ranges`, `al_selection_range`, `al_code_lens`, `al_document_links`, `al_semantic_tokens`
35
+ - Symbol Editing: `al_insert_after_symbol`, `al_insert_before_symbol`, `al_replace_symbol_body`, `al_find_referencing_symbols`
36
+ - Lifecycle: `al_close_document`, `al_save_document`, `al_restart_server`, `al_execute_command`
37
+
38
+ #### File Operations (9 tools)
39
+ `read_file`, `write_file`, `list_files`, `search_files`, `find_file`, `replace_content`, `delete_lines`, `replace_lines`, `insert_at_line`
40
+
41
+ #### BC Container Tools (14 tools)
42
+ `bc_list_containers`, `bc_create_container`, `bc_remove_container`, `bc_start_container`, `bc_stop_container`, `bc_restart_container`, `bc_compile`, `bc_publish`, `bc_run_tests`, `bc_container_logs`, `bc_download_symbols`, `bc_get_extensions`, `bc_uninstall_app`, `bc_compile_warnings`
43
+
44
+ #### Git Operations (11 tools)
45
+ `git_status`, `git_diff`, `git_stage`, `git_unstage`, `git_commit`, `git_log`, `git_branches`, `git_checkout`, `git_pull`, `git_push`, `git_stash`
46
+
47
+ #### Project Memory (5 tools)
48
+ `write_memory`, `read_memory`, `list_memories`, `delete_memory`, `edit_memory`
49
+
50
+ #### Discovery (1 tool)
51
+ `al_get_started` - **Always start here** - Returns status, tools, and workflows
52
+
53
+ ## [0.4.1] - 2024-12-27
54
+
55
+ ### Fixed
56
+ - Dynamic version reading from `package.json` in CLI for accurate version display
57
+ - ESM module configuration (`"type": "module"` in package.json) for proper ES module support
58
+ - Resolved `import.meta.url` TypeScript compilation issues
59
+
60
+ ### Changed
61
+ - Version is now automatically synced from `package.json` instead of hardcoded value
62
+ - Build output now properly supports ESM syntax
63
+
10
64
  ## [0.4.0] - 2024-12-26
11
65
 
12
66
  ### Added
package/README.md CHANGED
@@ -5,6 +5,8 @@
5
5
  [![npm version](https://img.shields.io/npm/v/partnercore-proxy.svg)](https://www.npmjs.com/package/partnercore-proxy)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
7
 
8
+ > **Latest:** v0.4.2 | **Tools:** 57+ | **Updated:** December 27, 2024
9
+
8
10
  ## Overview
9
11
 
10
12
  PartnerCore Proxy is a comprehensive MCP (Model Context Protocol) server that brings professional AL development capabilities to AI assistants. It provides:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "partnercore-proxy",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Local MCP proxy for AL Language Server integration - bridges local Business Central AL development with PartnerCore Cloud MCP",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",