Nynch MCP Server

A hosted [Model Context Protocol](https://modelcontextprotocol.io) server that gives AI agents full access to **Nynch** — a relationship-led growth

Remote serverstreamable-httpPython

What is the Nynch MCP server?

A hosted Model Context Protocol server that gives AI agents full access to Nynch — a relationship-led growth platform for consultants and professional services firms. That is what the nynch mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

Nynch is a relationship-led growth platform that helps consultants and professional services firms turn relationships into revenue. It combines CRM, relationship intelligence, and AI-powered coaching into a single platform.

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • read — Search, browse, and retrieve data
  • read-write — Read + create, update, delete records
  • admin — Full access including agent orchestration
  • search_contacts — Search contacts by name, company, or tags
  • get_contact_context — Full contact context: profile, interactions, activities, notes, network
  • search_deals — Search deals by title, stage, or company
  • get_deal_context — Full deal context: stakeholders, learnings, coaching actions
  • search_deals_by_inactivity — Find stalled deals with no recent activity
  • get_pipeline_summary — Pipeline health: stage distribution, at-risk deals, upcoming closes
  • get_next_best_actions — AI-powered recommendations for what to do next
  • list_buckets — List all buckets (lists/segments)
  • get_bucket_contacts — Get contacts in a specific bucket

What it needs from you

Configuration is passed through the environment: YOUR_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Nynch.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

This sits in the team communication group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Nynch's toolset — read, read-write, admin and 11 more — is a fair guide to whether it matches your workflow. It is maintained by peterod99; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
readSearch, browse, and retrieve data
read-writeRead + create, update, delete records
adminFull access including agent orchestration
search_contactsSearch contacts by name, company, or tags
get_contact_contextFull contact context: profile, interactions, activities, notes, network
search_dealsSearch deals by title, stage, or company
get_deal_contextFull deal context: stakeholders, learnings, coaching actions
search_deals_by_inactivityFind stalled deals with no recent activity
get_pipeline_summaryPipeline health: stage distribution, at-risk deals, upcoming closes
get_next_best_actionsAI-powered recommendations for what to do next
list_bucketsList all buckets (lists/segments)
get_bucket_contactsGet contacts in a specific bucket
get_bucket_game_queueGet contacts waiting to be sorted into buckets
log_interactionRecord a contact interaction (call, email, meeting, note)

How to install the Nynch MCP server

{
  "mcpServers": {
    "nynch": {
      "url": "https://crcrwtjzqzinfzokianr.supabase.co/functions/v1/mcp-server",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
YOUR_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Nynch to read.
  • Use Nynch to read-write.
  • Use Nynch to admin.

Frequently asked questions

It connects Nynch to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (read, read-write, admin, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Nynch directly.