|
You are here |
egghead.io | ||
| | | | |
smithery.ai
|
|
| | | | | Manipulate Excel files seamlessly without requiring Microsoft Excel installed. Create, read, modify workbooks, apply formatting, generate charts, and manage worksheets through AI agents. Supports both local and remote usage with stdio and SSE transport protocols. | |
| | | | |
www.kodeco.com
|
|
| | | | | Tired of copying code between AI chat windows and your editor? Claude Code brings AI-powered development directly to your command line and your IDE. This tutorial covers installation, project creation, codebase analysis, and advanced workflows that will transform how you approach coding tasks. | |
| | | | |
ezyang.github.io
|
|
| | | | | Model Context Protocol servers provide a standard interface for LLMs to interact with their environment. Cursor Agent mode and Claude Code use agents extensively. For example, instead of needing a separate RAG system (e.g., as previously provided by Cursor) to find and feed the model relevant context files, the LLM can instead call an MCP which will let it lookup what files it wants to look at before deciding what to do. Similarly, a model can run tests or build and then immediately work on fixing problems when this occurs. It is clear that Anthropic's built-in MCP servers are useful, and you should use agent mode when you can. | |
| | | | |
abstractexpr.com
|
|
| | | Most programmers prefer to write code over debugging it. Unfortunately, code breaks a lot more often than we would like and it often breaks in situations that are hard to debug. Therefore, an essential skill as a programmer is to know how to debug your code (and that of others). When facing our first bug... | ||