Commit Graph

4 Commits

Author SHA1 Message Date
Ryan Baumann
850ba136a4 docs(grounding-lite): apply Anthropic best practices
- Add "When to use each tool" section per MCP tool design guidance
- Add Parameters section with per-parameter documentation
- Use natural language (no CRITICAL/MUST per Claude 4.x guidance)
- Maintain concise format while adding essential context

Sources:
- https://www.anthropic.com/engineering/claude-code-best-practices
- https://docs.claude.com/en/docs/build-with-claude/prompt-engineering/claude-4-best-practices
- https://anthropic.skilljar.com/introduction-to-model-context-protocol

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-26 11:56:13 -08:00
Ryan Baumann
3bb29a7816 refactor(grounding-lite): condense skill to follow best practices
- Reduce from 141 to 37 lines (74% reduction)
- Follow "Be Concise" best practice from skills docs
- Add install spec for mcporter auto-installation
- Keep all essential commands and notes
- Match gemini/mcporter skill structure

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-26 11:56:12 -08:00
Ryan Baumann
7e93fb65a3 fix(grounding-lite): correct mcporter header syntax and update examples
- Fix header format: use KEY=value not KEY: value
- Update weather examples to use US locations (verified working)
- Remove comparison table per review feedback
- Clarify regional restrictions in notes

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-26 11:56:12 -08:00
Ryan Baumann
e33aceb485 feat(skills): add grounding-lite skill for Google Maps Grounding Lite MCP
Add new skill for Google Maps Grounding Lite, an experimental service that
provides AI-grounded location search, weather lookup, and route computation
via the MCP protocol.

Features:
- search_places: Find places with AI summaries and Google Maps links
- lookup_weather: Current conditions and forecasts by address/coords/place ID
- compute_routes: Distance and duration for driving/walking routes

Implementation:
- Uses mcporter MCP client for proper MCP server integration
- One-time server config via mcporter config add
- Cleaner tool invocation syntax (mcporter call server.tool)
- Ad-hoc usage option for one-off calls without config
- Includes mcporter list command for tool discovery

Security:
- API key security best practices documented
- Recommends API key restrictions in Google Cloud Console
- OAuth 2.0 suggested for production deployments

Uses the same GOOGLE_MAPS_API_KEY as goplaces/local-places skills.
2026-01-26 11:56:12 -08:00