Home / Servers

nestr-mcp

by nestr-dev

@nestr/mcp

MCP (Model Context Protocol) server for Nestr - connect AI assistants like Claude to your workspace.

What is this?

This MCP server allows AI assistants to interact with your Nestr workspace:

  • Search for tasks, projects, and roles
  • Create and update nests
  • View organizational structure (circles, roles, accountabilities)
  • Get workspace insights and metrics
  • Add comments and collaborate

Quick Start

Visit mcp.nestr.io for the easiest setup with step-by-step instructions for Claude Desktop, Claude Code, and Cursor.

Claude Desktop

  1. Go to Settings → Connectors → Add custom connector
  2. Set Name to Nestr and Remote MCP URL to https://mcp.nestr.io/mcp
  3. Click "Add" then "Authenticate" to log in with Nestr

Claude Code

claude mcp add nestr --transport http https://mcp.nestr.io/mcp

Then run /mcp in Claude Code and click "Authenticate" to log in.

Using the npm Package (Local)

If you prefer to run the MCP server locally:

npx @nestr/mcp

Configure your AI client with:

{
  "mcpServers": {
    "nestr": {
      "command": "npx",
      "args": ["-y", "@nestr/mcp"],
      "env": {
        "NESTR_API_KEY": "your-api-key-here"
      }
    }
  }
}

To get an API key:

  1. Go to your Nestr workspace
  2. Click SettingsIntegrationsWorkspace API accessConfigure
  3. Click "New API key" and copy it

Start Using It

Ask your AI assistant things like:

  • "What workspaces do I have access to?"
  • "Search for tasks related to marketing"
  • "Create a new project called 'Q1 Planning'"
  • "What are my current projects and their status?"
  • "Who is responsible for customer support?"

Available Tools

Workspace & Search

ToolDescription
nestr_list_workspacesList accessible workspaces
nestr_get_workspaceGet workspace details
nestr_create_workspaceCreate a new workspace (OAuth only)
nestr_searchSearch for nests (tasks, projects, roles)
nestr_get_meGet current user identity and workspace list

Nests (Tasks, Projects, Roles)

ToolDescription
nestr_get_nestGet details of a specific nest (supports batch fetch with comma-separated IDs; single-nest provenance/rights/whoCan flags available)
nestr_explain_nestDiagnose one nest: field/property provenance (which label/circle defines each), the caller's composed rights with a deny trace, and (with whoCan) who can act on it and who to contact
nestr_get_nest_childrenGet child nests
nestr_create_nestCreate a new nest
nestr_update_nestUpdate nest properties
nestr_delete_nestDelete a nest
nestr_reorder_nestReorder a nest relative to another
nestr_bulk_reorderBulk reorder multiple nests
nestr_add_labelAdd a label to a nest
nestr_remove_labelRemove a label from a nest

Comments & Discussion

ToolDescription
nestr_add_commentAdd a comment to a nest
nestr_get_commentsGet comments/discussion on a nest
nestr_update_commentUpdate a comment
nestr_delete_commentDelete a comment

Organization Structure

ToolDescription
nestr_list_circlesList organizational circles
nestr_get_circleGet circle details
nestr_get_circle_rolesGet roles in a circle with accountabilities and domains
nestr_list_rolesList all roles
nestr_list_usersList workspace members
nestr_get_userGet user details
nestr_add_workspace_userAdd a user to the workspace

Tensions

ToolDescription
nestr_create_tensionCreate a tension on a circle or role
nestr_get_tensionGet tension details
nestr_list_tensionsList tensions on a circle or role
`nestr_upd

Related servers

n8n

by n8n-io

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

NOASSERTION198,904

@modelcontextprotocol/server-everything

Official

by modelcontextprotocol

MCP server that exercises all the features of the MCP protocol

89,105

@modelcontextprotocol/server-filesystem

Official

by modelcontextprotocol

MCP server for filesystem access

SEE LICENSE IN LICENSE89,105

mcp-server-fetch

Official

by modelcontextprotocol

A Model Context Protocol server providing tools to fetch and convert web content for usage by LLMs

89,105