Skip to main content
ClaudeWave

StackResolve: web intelligence for AI agents. SDK, CLI, and hosted MCP server. Find, compare, and audit software; scored registry of agent-ready tools and MCP servers; structured company research.

MCP ServersRegistry oficial0 estrellas0 forksTypeScriptMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/26/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/autorevai/stackresolve
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "stackresolve": {
      "command": "node",
      "args": ["/path/to/stackresolve/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/autorevai/stackresolve and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

# stackresolve

Official TypeScript/Node SDK for the [StackResolve](https://stackresolve.dev) API.

StackResolve is web intelligence for AI agents: find, compare, and audit software for a
task; a scored registry of agent-ready tools and MCP servers; structured company research.
Three surfaces, one API: REST, a hosted MCP server, and this CLI/SDK. Registry reads are
free and need no key.

- Site and docs: https://stackresolve.dev
- REST: https://api.stackresolve.dev (OpenAPI at /openapi.json, llms.txt at /llms.txt)
- Hosted MCP (streamable HTTP): https://mcp.stackresolve.dev/mcp
- MCP server registry for agents: https://stackresolve.dev/mcp-servers

## MCP server

The hosted server needs no install. The handshake and the registry reads (`search_tools`,
`get_profile`, `compare_products`, `list_registry`) work without a key. Metered tools
(`resolve`, `how_to`, `audit`, `research_company`, `get_company`, `get_pricing`) need a free
key from https://stackresolve.dev/developers, sent as the `x-api-key` header.

Claude Code:

```bash
claude mcp add --transport http stackresolve https://mcp.stackresolve.dev/mcp
```

Cursor (`~/.cursor/mcp.json`):

```json
{
  "mcpServers": {
    "stackresolve": {
      "url": "https://mcp.stackresolve.dev/mcp",
      "headers": { "x-api-key": "ar_..." }
    }
  }
}
```

Codex (`~/.codex/config.toml`):

```toml
[mcp_servers.stackresolve]
url = "https://mcp.stackresolve.dev/mcp"

[mcp_servers.stackresolve.headers]
x-api-key = "ar_..."
```

Tools: `resolve`, `how_to`, `find_tools_for_task`, `search_tools`, `compare_products`,
`get_profile`, `list_registry`, `audit`, `generate_agent_interfaces`, `get_company`,
`get_pricing`, `research_company`, `find_competitors`, `compare_companies`, `get_usage`.

## CLI

```bash
npm i -g stackresolve
stackresolve find "scrape javascript-heavy sites from claude code"
stackresolve audit stripe.com
stackresolve company vercel.com
stackresolve --help
```

## SDK
## Install

```bash
npm install stackresolve
```

Requires Node 18+ (uses the built-in global `fetch`). No runtime dependencies.

## Quickstart

```ts
import { StackResolve } from 'stackresolve'

const sr = new StackResolve({ apiKey: process.env.STACKRESOLVE_API_KEY })

// 1. Audit a domain: AgentReady scores, facts, and issues.
const report = await sr.audit('stripe.com')
console.log(report.scores.agentready, report.issues)

// 2. Structured company data.
const company = await sr.getCompany('vercel.com')
console.log(company.name, company.description)

// 3. Task -> ranked, agent-ready tools.
const tools = await sr.findTools('send transactional email from a Node service')
console.log(tools.results)

// 4. Run an Agent Discovery check (needs an API key).
const discovery = await sr.runDiscovery('firecrawl')
console.log(discovery)
```

## Authentication

Get an API key at [stackresolve.dev](https://stackresolve.dev). Pass it to the
constructor, or set the `STACKRESOLVE_API_KEY` environment variable:

```ts
const sr = new StackResolve({ apiKey: 'ar_...' })
// or, reading STACKRESOLVE_API_KEY from the environment:
const sr2 = new StackResolve()
```

The key is sent as the `x-api-key` header on every request. Public endpoints
(audit, search, profiles, company data, ...) work without a key, subject to an
anonymous rate limit. Gated endpoints (monitors, usage, discovery runs) need one.

You can point the client at a different host with `baseUrl` or the
`STACKRESOLVE_BASE_URL` environment variable:

```ts
const sr = new StackResolve({ apiKey, baseUrl: 'https://api.stackresolve.dev' })
```

## Errors

Any non-2xx response throws a `StackResolveError` carrying the HTTP `status` and
the parsed `body`:

```ts
import { StackResolve, StackResolveError } from 'stackresolve'

try {
  await sr.getUsage()
} catch (err) {
  if (err instanceof StackResolveError) {
    console.error(err.status, err.body)
  }
}
```

## Methods

AgentReady:
`audit(domain)`, `findTools(task)`, `search(query, requirements?)`,
`compare(slugs)`, `getProfile(slug)`, `listRegistry(opts?)`, `getCategories()`,
`getCategory(slug)`, `getDiscovery(slug)`, `runDiscovery(slug)`,
`getScoreHistory(slug)`, `generate(domain, openapiUrl?)`, `deploy(domain, openapiUrl?)`.

CompanyData:
`getCompany(domain)`, `getPricing(domain)`, `getCompetitors(domain)`,
`research(domain, question?)`, `compareCompanies(domains)`.

Monitors + account (API key required):
`listMonitors()`, `addMonitor(slug, opts?)`, `runMonitorNow(slug)`,
`getUsage()`, `getMyProfile()`.

## License

MIT
agent-toolsai-agentsclaude-codecodexcursordeveloper-toolsllms-txtmcpmcp-server

Lo que la gente pregunta sobre stackresolve

¿Qué es autorevai/stackresolve?

+

autorevai/stackresolve es mcp servers para el ecosistema de Claude AI. StackResolve: web intelligence for AI agents. SDK, CLI, and hosted MCP server. Find, compare, and audit software; scored registry of agent-ready tools and MCP servers; structured company research. Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-08-25.

¿Cómo se instala stackresolve?

+

Puedes instalar stackresolve clonando el repositorio (https://github.com/autorevai/stackresolve) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar autorevai/stackresolve?

+

Nuestro agente de seguridad ha analizado autorevai/stackresolve y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene autorevai/stackresolve?

+

autorevai/stackresolve es mantenido por autorevai. La última actividad registrada en GitHub es del 2026-08-25, con 0 issues abiertos.

¿Hay alternativas a stackresolve?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega stackresolve en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: autorevai/stackresolve
[![Featured on ClaudeWave](https://claudewave.com/api/badge/autorevai-stackresolve)](https://claudewave.com/repo/autorevai-stackresolve)
<a href="https://claudewave.com/repo/autorevai-stackresolve"><img src="https://claudewave.com/api/badge/autorevai-stackresolve" alt="Featured on ClaudeWave: autorevai/stackresolve" width="320" height="64" /></a>

Más MCP Servers

Alternativas a stackresolve