Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@dewtech/dare-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dewtech/dare-mcp-server

DARE Framework MCP Server - Model Context Protocol server for AI-assisted development

latest
Source
npmnpm
Version
0.3.5
Version published
Weekly downloads
31
138.46%
Maintainers
1
Weekly downloads
 
Created
Source

@dewtech/dare-mcp-server

Model Context Protocol (MCP) server for DARE Framework. Provides semantic context queries to reduce token consumption by up to 90%.

Features

  • HTTP API implementing Model Context Protocol
  • Semantic context queries without reading full files
  • Task status management and tracking
  • Blueprint and DAG access endpoints
  • Full-text search with FTS5

Installation

npm install @dewtech/dare-mcp-server

Usage

Start the server

dare-mcp-server
# or
DARE_MCP_PORT=3000 DARE_PROJECT_PATH=/path/to/project dare-mcp-server

Query context (saves tokens)

# Instead of reading BLUEPRINT.md entirely, query only what you need
curl -X POST http://localhost:3000/context/query \
  -H "Content-Type: application/json" \
  -d '{"type": "architecture", "query": "authentication", "limit": 3}'

Update task status

curl -X PUT http://localhost:3000/tasks/task-001 \
  -H "Content-Type: application/json" \
  -d '{"status": "DONE"}'

Endpoints

MethodEndpointDescription
GET/healthHealth check
GET/toolsList MCP tools
POST/context/querySemantic context query
GET/blueprintGet BLUEPRINT.md
GET/dagGet dare-dag.yaml
GET/tasks/:idGet task status
PUT/tasks/:idUpdate task status
GET/projectGet dare.config.json

Integration with Cursor

Add to .cursorrules:

## MCP Server
Query context via MCP instead of reading full files:
POST http://localhost:3000/context/query
{"type": "architecture", "query": "your query", "limit": 5}
This saves ~90% of tokens on context retrieval.

Token Savings

MethodTokens Used
Read full BLUEPRINT.md~8,000 tokens
MCP query (5 results)~400 tokens
Savings~95%

Keywords

dare

FAQs

Package last updated on 04 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts