Skip to main content
Glama
bayleafwalker

hostproto-dap-core

hostproto-dap-core

The HostProto semantics for Debug Adapter Protocol hosts, once. A debugger becomes a HostProto host by supplying an EngineBinding (how to start it, what launch says, what it cannot do); the core computes revision, cursor, revision-scoped targets, preconditions, receipts, deviations, recovery, the earned capability profile, and serves the MCP 2026-07-28 surface with the pinned hostproto-semantics bundles as tool schemas. See docs/PROMISE.md.

Bindings: hostproto-dap-debugpy (Python), hostproto-dap-delve (Go). Both were full adapters first; the core was extracted once they agreed file-for-file on everything but the seam (hostproto-semantics ADR-0012).

Use

import { serve, DapClient, type EngineBinding } from 'hostproto-dap-core';
const binding: EngineBinding = { kind: 'mydbg', variant: 'x', serverName: 'hostproto-dap-mydbg', launchDescription: '…',
  async start(cwd) { return { client: DapClient.spawn('mydbg', ['--dap'], cwd) }; },
  initializeArguments: () => ({ adapterID: 'mydbg' }),
  launchArguments: (p, program, cwd) => ({ request: 'launch', program, cwd, stopOnEntry: true }),
  identity: caps => ({ dap: 'mydbg' }) };
serve(binding);

Depend on it by commit: "hostproto-dap-core": "github:bayleafwalker/hostproto-dap-core#<sha>". prepare fetches the pinned bundles (offline: HOSTPROTO_SEMANTICS_DIR) and builds.

npm ci && npm run schemas && npm test   # the promise, against a scripted engine
A
license - permissive license
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    An implementation of the Model Context Protocol (MCP) that enables interaction with debug adapters, allowing language models to control debuggers, set breakpoints, evaluate expressions, and navigate source code during debugging sessions.
    40
    AGPL 3.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables coding agents to use a real debugger (Python via debugpy) for launching, attaching, setting breakpoints, stepping through code, inspecting stack frames, and evaluating expressions through MCP tools.
    27
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Language-owned MCP gateway and execution-host coordination for Hara, exposing read-only tools for runtime introspection, evaluation, calls, and checks, with an optional deterministic test fixture for development.
    4
    Apache 2.0
  • A
    license
    A
    quality
    A
    maintenance
    Enables coding agents to connect to Debug Adapter Protocol debuggers over MCP, allowing them to launch or attach to native targets, control execution, set breakpoints and watchpoints, inspect stacks, variables, memory, and exceptions, and capture agent-friendly debugger snapshots.
    14
    1,264
    2
    Apache 2.0

View all related MCP servers

Related MCP Connectors

  • Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.

  • Remote MCP for A2A failure replay MCP, structured receipts, audit logs, and reviewer-ready evidence.

  • Remote MCP for AI Studio Android release gate MCP, structured receipts, audit logs, and reviewer-rea

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/bayleafwalker/hostproto-dap-core'

If you have feedback or need assistance with the MCP directory API, please join our Discord server