Skip to content

Commit d1082c2

Browse files
committed
2 parents b5fa5fc + 476c78f commit d1082c2

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

README.md

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This minimalist architecture provides maximum flexibility while maintaining simp
2323
### What Makes It Powerful
2424

2525
**🤝 Shared Console Experience**
26-
- You and AI work together in the same PowerShell session
26+
- You and AI collaborate in the same PowerShell session
2727
- Every command the AI executes appears in your console in real-time
2828
- PowerShell cmdlets display colorful output
2929
- You can respond to input requests from AI-executed commands directly in the console
@@ -43,20 +43,18 @@ This minimalist architecture provides maximum flexibility while maintaining simp
4343
- Eliminates the typical 1-5 second startup delay per cmdlet
4444
- Fast initial feedback to users with instant acknowledgment before full results
4545
- Real-time streaming of output as commands run
46-
- Complex multi-step operations flow naturally
4746

4847
**🔍 Comprehensive Output Stream Capture**
4948
- Command output is captured and returned to the AI assistant, with PowerShell's critical streams (error, warning, success, information) completely separated
5049
- Verbose and debug streams display naturally in the console under user control, and can be shared manually when needed
5150
- Clear execution statistics for every command: duration, error count, warning count, and info count
5251

53-
**📝 LLM-Optimized Text File Operations**
54-
- Traditional Get/Set-Content cmdlets frequently fail for LLMs due to line number confusion and poor performance
55-
- To address this, PowerShell.MCP includes 6 specialized cmdlets designed specifically for AI assistants to handle text file operations reliably
56-
- Single-pass processing architecture enables up to 100x faster performance than Get/Set-Content on large files
57-
- 1-based line numbering eliminates array index confusion and matches compiler error messages
58-
- Automatic encoding detection and preservation (UTF-8/16/32, Shift-JIS, line endings)
59-
- Pattern matching with regex support and capture groups
52+
**🌐 Universal Modules & CLI Integration**
53+
- PowerShell.MCP acts as a universal bridge, instantly making any PowerShell modules or CLI tools available as fully functional MCP servers
54+
- Access the vast ecosystem of PowerShell Gallery with over 3,000 pre-built modules, instantly integrating with everything from cloud services like [Azure](https://www.powershellgallery.com/packages/Az), [AWS](https://www.powershellgallery.com/packages/AWSPowerShell.NetCore), [Google Cloud](https://www.powershellgallery.com/packages/GoogleCloud) or [UiPath Orchestrator](https://www.powershellgallery.com/packages/UiPathOrch) to enterprise tools like [Active Directory](https://learn.microsoft.com/powershell/module/activedirectory/), [Exchange](https://www.powershellgallery.com/packages/ExchangeOnlineManagement) or [SQL Server](https://www.powershellgallery.com/packages/SqlServer)
55+
- Uses `Get-Help` to automatically learn each cmdlet's syntax, parameters, and usage patterns for immediate productive use
56+
- AI effectively leverages well-known command-line tools like [Git](https://git-scm.com/) or [Docker](https://www.docker.com/)
57+
- PowerShell.MCP fundamentally transforms the MCP ecosystem by making virtually any command-line tool AI-accessible without custom development
6058

6159
**🔗 PowerShell Pipeline Composability**
6260
- PowerShell naturally chains commands together, passing rich data between them
@@ -66,12 +64,13 @@ This minimalist architecture provides maximum flexibility while maintaining simp
6664
- You describe what you want in natural language - AI constructs the optimal pipeline automatically
6765
- No need to understand pipeline syntax yourself - just tell AI what you need
6866

69-
**🌐 Universal Modules & CLI Tools Integration**
70-
- PowerShell.MCP acts as a universal bridge, instantly making any PowerShell modules or CLI tools available as fully functional MCP servers
71-
- Access the vast ecosystem of PowerShell Gallery with over 3,000 pre-built modules, instantly integrating with everything from cloud services like [Azure](https://www.powershellgallery.com/packages/Az), [AWS](https://www.powershellgallery.com/packages/AWSPowerShell.NetCore), [Google Cloud](https://www.powershellgallery.com/packages/GoogleCloud) or [UiPath Orchestrator](https://www.powershellgallery.com/packages/UiPathOrch) to enterprise tools like [Active Directory](https://learn.microsoft.com/powershell/module/activedirectory/), [Exchange](https://www.powershellgallery.com/packages/ExchangeOnlineManagement) or [SQL Server](https://www.powershellgallery.com/packages/SqlServer)
72-
- Uses `Get-Help` to automatically learn each cmdlet's syntax, parameters, and usage patterns for immediate productive use
73-
- AI effectively leverages well-known command-line tools like [Git](https://git-scm.com/) or [Docker](https://www.docker.com/)
74-
- PowerShell.MCP fundamentally transforms the MCP ecosystem by making virtually any command-line tool AI-accessible without custom development
67+
**📝 LLM-Optimized Text File Operations**
68+
- Traditional Get/Set-Content cmdlets frequently fail for LLMs due to line number confusion and poor performance
69+
- To address this, PowerShell.MCP includes 6 specialized cmdlets designed specifically for AI assistants to handle text file operations reliably
70+
- Single-pass processing architecture enables up to 100x faster performance than Get/Set-Content on large files
71+
- 1-based line numbering eliminates array index confusion and matches compiler error messages
72+
- Automatic encoding detection and preservation (UTF-8/16/32, Shift-JIS, line endings)
73+
- Pattern matching with regex support and capture groups
7574

7675
**📚 No RAG or Context Grounding Required**
7776
- Simply gather necessary documents and files in a folder
@@ -172,7 +171,7 @@ Experience PowerShell.MCP's capabilities with these engaging demonstrations:
172171
- "Tell me how to use Git in PowerShell"
173172
- "How does it feel now that you have a tool like PowerShell.MCP?"
174173

175-
After trying these demos, explore the 8 built-in prompts in your MCP client's prompts list, or ask AI to explain any command - learning by doing is the best approach.
174+
After trying these demos, explore the 9 built-in prompts in your MCP client's prompts list, or ask AI to explain any command - learning by doing is the best approach.
176175

177176
### 🔧 Basic System Information
178177
- "Tell me the current date and time"

0 commit comments

Comments
 (0)