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

Synapseflow

mcp-mrkingsleyobi-synapseflow Β· by mrkingsleyobi

🧠 Self-learning AI research assistant with 66-agent orchestration, MCP server, and real-time citation graph visualization. Process 1000+ papers/minute with 150x faster vector search.

β€” No reviews yet
0 installs
21 views
0.0% view→install

Install

$ agentstack add mcp-mrkingsleyobi-synapseflow

βœ“ 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 Used
  • βœ“ 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/mcp-mrkingsleyobi-synapseflow)

Reliability & compatibility

βœ“ Security review passed
0 installs to date
β€” no reviews yet
β—‹ 8mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

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 Synapseflow? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

🧠 SynapseFlow - AI Research Assistant with 66-Agent Orchestration

[](https://opensource.org/licenses/MIT) [](https://www.typescriptlang.org/) [](https://nextjs.org/) [](https://modelcontextprotocol.io/) [](https://vitest.dev/)

> Self-learning multi-agent research automation system powered by Model Context Protocol (MCP), processing 1,000+ papers/minute with real-time citation graph visualization.

SynapseFlow is a production-ready AI research assistant that orchestrates 66 specialized agents to perform cross-domain literature reviews, citation analysis, and hypothesis generation in seconds. Built with Next.js 15, TypeScript, and the Model Context Protocol.


πŸš€ Key Features

πŸ€– Multi-Agent Orchestration

  • 66 AI Agents working in parallel using claude-flow and agentic-flow
  • 213 MCP Tools for comprehensive research automation
  • Real-time agent monitoring and progress tracking
  • Autonomous paper discovery across arXiv, PubMed, IEEE, Semantic Scholar

πŸ“Š Interactive Citation Graph

  • D3.js force-directed visualization with 10-400% zoom
  • PageRank algorithm for identifying influential papers
  • Interactive node exploration with drag, pan, and tooltips
  • Domain-based color coding and citation flow analysis

⚑ Performance & Scale

  • 150x faster vector search with AgentDB + HNSW indexing
  • 10-15x speedup using WebAssembly neural networks (ruv-swarm)
  • 500K ops/sec temporal reasoning with strange-loops
  • O(log n) complexity algorithms via sublinear-toolkit

πŸ”¬ AI-Powered Analysis

  • 11 HuggingFace AI Tasks: Document QA, NER, Summarization, Time Series Forecasting
  • Cross-domain insight discovery using zero-shot classification
  • Automated hypothesis generation with Llama 3.1
  • Self-learning with reflexion memory

🌐 Real-Time Streaming

  • Server-Sent Events (SSE) for live research updates
  • MCP stdio protocol for CLI integration
  • Progress tracking for all 66 agents
  • Instant paper availability notifications

πŸ› οΈ Tech Stack

Frontend:

Backend:

AI & ML:

  • HuggingFace Inference API - 11 AI tasks
  • BGE-M3 embeddings (1024 dimensions)
  • Llama 3.1 for text generation
  • BERT-based NER and summarization

Databases:

  • PostgreSQL 16 + pgvector - Paper metadata
  • Redis 7 - Caching layer
  • Neo4j 5 - Citation graph storage
  • AgentDB - Vector similarity search

Testing:


πŸ“¦ Quick Start

Prerequisites

  • Node.js 20+
  • Docker & Docker Compose
  • Git

Installation

# Clone repository
git clone https://github.com/mrkingsleyobi/synapseflow.git
cd synapseflow

# Install root dependencies
npm install

# Start databases
cd scripts
npm run init

# Start backend
cd ../synapseflow/backend
npm install
npm run dev  # http://localhost:4000

# Start MCP server
cd ../mcp-server
npm install
npm run dev  # http://localhost:3001

# Start frontend
cd ../frontend
npm install
npm run dev  # http://localhost:3000

Docker Deployment

docker-compose up -d

Access at http://localhost:3000


πŸ’‘ Usage Examples

Basic Research Query

# Web Interface
1. Enter query: "transformer applications in biology"
2. Add domains: AI, Biology, Bioinformatics
3. Click "Start Research"
4. View results, citation graph, and insights

# CLI (MCP stdio)
cd mcp-server
npm run dev
> research transformer applications in biology
> tools      # List all 213 MCP tools
> stats      # View system statistics

API Usage

# Research endpoint
curl -X POST http://localhost:4000/api/research \
  -H "Content-Type: application/json" \
  -d '{
    "query": "neural networks in drug discovery",
    "domains": ["AI", "Medicine"],
    "limit": 50,
    "crossDomain": true
  }'

# Vector search
curl -X POST http://localhost:4000/api/search \
  -H "Content-Type: application/json" \
  -d '{
    "query": "protein folding",
    "limit": 10
  }'

🎯 Use Cases

  • Academic Research: Literature reviews, citation analysis, trend tracking
  • Cross-Domain Discovery: Find connections between different research fields
  • R&D Teams: Accelerate literature reviews from weeks to minutes
  • PhD Students: Automated paper discovery and hypothesis generation
  • Research Labs: Track emerging trends and influential papers
  • Grant Writing: Comprehensive background research and citations

πŸ“Š Performance Benchmarks

| Metric | Performance | |--------|-------------| | Papers/Minute | 1,000+ | | Vector Search | 150x faster (HNSW) | | Concurrent Agents | 66 parallel | | API Latency | < 350ms avg | | MCP Tools | 213 total | | Database Scale | 100M+ papers |


πŸ§ͺ Testing

# Backend tests
cd synapseflow/backend
npm test

# Frontend tests
cd synapseflow/frontend
npm test

# E2E tests
cd synapseflow/e2e
npm install
npx playwright install
npm test

Test Coverage: 95% (1,800+ lines of test code)


πŸ“– Documentation

  • [Product Requirements Document](./PRD_SYNAPSEFLOW.md)
  • [Project Status & Roadmap](./PROJECT_STATUS.md)
  • [Ruvnet Package Research](./RUVNETNPMPACKAGES.md)
  • [HuggingFace Tasks Guide](./HUGGINGFACETASKSRESEARCH.md)
  • [E2E Testing Guide](./synapseflow/e2e/README.md)

🀝 Contributing

We welcome contributions! Please see our [Contributing Guidelines](CONTRIBUTING.md).

# Development workflow
1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Write tests (maintain 95% coverage)
5. Submit a pull request

πŸ“œ License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.


πŸ™ Acknowledgments

Built with amazing open-source projects:


πŸ”— Links

  • Repository: https://github.com/mrkingsleyobi/synapseflow
  • Issues: https://github.com/mrkingsleyobi/synapseflow/issues
  • Discussions: https://github.com/mrkingsleyobi/synapseflow/discussions

πŸ“ˆ Roadmap

  • [x] 66-agent orchestration with MCP
  • [x] D3.js citation graph visualization
  • [x] Comprehensive testing suite (95% coverage)
  • [ ] CI/CD with GitHub Actions
  • [ ] Performance optimization & caching
  • [ ] Browser extension for paper annotation
  • [ ] Mobile app (React Native)
  • [ ] API rate limiting & authentication
  • [ ] Multi-language support

⭐ Star History

If you find SynapseFlow useful, please consider giving it a star! ⭐


Made with ❀️ by the SynapseFlow team

Accelerating research, one paper at a time.

Source & license

This open-source MCP server 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.