Dawn Mcp

v1.0.0

A powerful MCP server built with NitroStack

Connection Setup

Add via Cursor Settings UI (Settings > Features > MCP > Add New MCP Server):

{
  "mcpServers": {
    // your other mcp servers
    "dawn-mcp": {
      "url": "https://dawnmcp-6a6d98d3-dawn-of-ai-srmist.app.nitrocloud.ai/mcp"
    }
  }
}

Connect remote tools directly via Claude's Web UI:

Add custom connector BETA
Connect Claude to your data and tools. Learn more about connectors or get started with pre-built ones.
Advanced settings
Only use connectors from developers you trust. Anthropic does not control which tools developers make available and cannot verify that they will work as intended or that they won't change.

Configure custom tools directly via ChatGPT's Web UI:

New App
PNG only. Best results at 256 x 256 px or larger. Max file size: 10 KB
Custom MCP servers introduce risk. Learn more
OpenAI hasn't reviewed this MCP server. Attackers may attempt to steal your data or trick the model into taking unintended actions, including destroying data.

Add the following configuration block under mcpServers in your Antigravity configuration file (~/.gemini/config/mcp_config.json):

{
  "mcpServers": {
    // your other mcp servers
    "dawn-mcp": {
      "serverUrl": "https://dawnmcp-6a6d98d3-dawn-of-ai-srmist.app.nitrocloud.ai/mcp"
    }
  }
}

Add the following configuration block to your Codex configuration file (~/.codex/config.toml):

[mcp_servers.dawn-mcp]
url = "https://dawnmcp-6a6d98d3-dawn-of-ai-srmist.app.nitrocloud.ai/mcp"

Connect directly using the Server-Sent Events endpoint:

https://dawnmcp-6a6d98d3-dawn-of-ai-srmist.app.nitrocloud.ai/mcp
Available Tools
memory_save_memory

Save a piece of information to long-term memory. Use this to remember user preferences, project context, technical decisions, conversations, or important events for future reference.

memory_search_memory

Search stored memories by semantic similarity. Use this to recall past conversations, find previously stored project context, retrieve technical decisions, or look up user preferences.

memory_update_memory

Update the content of an existing memory. The embedding is regenerated automatically. Use the memory ID from a previous search result.

memory_delete_memory

Permanently delete a stored memory by its ID. Use the memory ID from a previous search result.

repo_analyze_repository

Analyze a local repository to understand its structure, framework, dependencies, and architecture. Scans all files, performs AST parsing on source code, detects patterns, and generates an AI summary.

repo_scan_files

Scan a local repository and list all files with classified types, languages, and aggregate statistics.

repo_index_repository

Index a local repository for semantic code search. Scans files, splits them into function/class chunks, generates embeddings using Ollama, and stores them in ChromaDB.

repo_ask_codebase

Ask a natural language question about an indexed codebase. Uses RAG (retrieval-augmented generation) over ChromaDB vector search and Qwen2.5-Coder LLM.

repo_build_knowledge_graph

Construct a structural knowledge graph of files, functions, classes, and dependencies for a repository.

repo_query_knowledge_graph

Query the repository knowledge graph by entity name or type (file, function, class, module, dependency).

repo_explain_architecture

Generate a detailed architectural explanation of a repository.

repo_explain_project

Generate a comprehensive project explanation including architecture, technology stack, and module structure.

repo_find_feature_location

Locate where a specific feature or capability is implemented in the codebase.

repo_impact_analysis

Analyze potential impact of modifying a specific file or symbol across the codebase.

repo_summarize_repository

Get a concise high-level technical summary of the repository.

agent_plan_task

Decompose a complex software engineering request into structured implementation phases using the PlannerAgent.

agent_execute_step

Generate production code or step-by-step implementation for a planned step using the ExecutorAgent.

agent_review_code

Perform a comprehensive code review auditing security, performance, quality, and best practices using the ReviewerAgent.

agent_debug_issue

Diagnose error logs, stack traces, or failing tests to identify root cause and recommended fix using the DebuggerAgent.

documents_add_document

Store and index a project document, spec, or architecture guide for semantic retrieval.

documents_search_documents

Search stored project documentation by semantic similarity.

documents_list_documents

List all stored project documents and specs.

documents_delete_document

Delete a stored document by its UUID.