AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Lsp

skill-mawildoer-atopile-agent-skill-lsp · by mawildoer

Use when working with .ato files and you need semantic code intelligence — hover info, diagnostics, go-to-definition, find-references, or symbol inspection. Triggers on questions like "what type is this", "what members does X have", "where is X defined", "what uses Y", checking for parse errors, or understanding atopile module/interface signatures.

No reviews yet
0 installs
6 views
0.0% view→install

Install

$ agentstack add skill-mawildoer-atopile-agent-skill-lsp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-mawildoer-atopile-agent-skill-lsp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Lsp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Atopile LSP via MCP

The atopile LSP (ato lsp start) can be bridged to MCP (e.g. via mcpls). This gives you semantic access to .ato files beyond what grep/read can provide.

The tool names below assume the MCP server is registered as atopile-lsp. If yours is registered under a different name, substitute the prefix accordingly.

When to Use

  • Understanding a symbol — hover gives type, members, docs, and usage examples
  • Checking for errors — diagnostics surfaces parse errors and warnings after edits
  • Navigating code — definition jumps to where a symbol is declared; references finds all usages
  • Formatting — format_document applies language-specific formatting rules

Prefer these tools over grep when you need type information, interface members, or documentation.

Working Tools

All position params are 1-indexed (as shown in editors).

| Tool | What it does | Key params | |------|-------------|------------| | mcp__atopile-lsp__get_hover | Type info, docs, members, usage examples | file_path, line, character | | mcp__atopile-lsp__get_diagnostics | Parse errors/warnings for a file | file_path | | mcp__atopile-lsp__get_cached_diagnostics | Same as above but from cache (faster) | file_path | | mcp__atopile-lsp__get_definition | Jump to where a symbol is defined | file_path, line, character | | mcp__atopile-lsp__get_references | Find all usages of a symbol | file_path, line, character, include_declaration | | mcp__atopile-lsp__format_document | Format a file with language rules | file_path |

Tools That May Return Empty

Depending on LSP version, some methods are not yet fully implemented and return no data:

| Tool | Notes | |------|-------| | mcp__atopile-lsp__get_completions | May run but return no items | | mcp__atopile-lsp__get_code_actions | May run but return no actions | | mcp__atopile-lsp__get_document_symbols | textDocument/documentSymbol may be unimplemented | | mcp__atopile-lsp__workspace_symbol_search | workspace/symbol may be unimplemented | | mcp__atopile-lsp__prepare_call_hierarchy | textDocument/prepareCallHierarchy may be unimplemented |

If a tool returns nothing, fall back to grep + get_hover on the located position.

Usage Patterns

Inspect a symbol — use get_hover at the symbol's file position. Returns the type, full member list, and usage examples.

get_hover(file_path=".../some-driver.ato", line=36, character=8)
→ interface ElectricPower: voltage, max_current, hv, lv, gnd, vcc ...

Check a file compiles — use get_diagnostics after editing. Empty diagnostics = file parses clean.

Find a definition — use get_definition at a symbol reference. Returns the source file and line range.

Find all usages — use get_references at a symbol. Returns every location across the workspace.

Explore an unfamiliar interface — grep to find where it's used, then get_hover on that position.

Common Mistakes

  • Wrong line/character — 1-indexed, not 0-indexed
  • Skipping diagnostics after edits — always verify .ato files parse cleanly

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.