Generated from MCP registry

SCRYU MCP docs

Canonical endpoint: https://agents.scryu.com/mcp

Prompts

create_opportunity_from_prompt

Turn an operator instruction into a receipt-backed SCRYU opportunity workflow.

Arguments
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "operator_prompt": {
      "type": "string",
      "minLength": 1
    },
    "company_hint": {
      "type": "string",
      "minLength": 1
    },
    "priority": {
      "type": "string",
      "enum": [
        "low",
        "medium",
        "high",
        "urgent"
      ]
    },
    "target_close_date": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "operator_prompt"
  ],
  "additionalProperties": false
}

Tools

find_and_save_companies

Find and save one or more plausible companies from a clean canonical anchor and optionally attach them to a research objective. Use the company name, official domain, or official URL. Do not include ranking text or descriptive blurbs in the anchor.

companies

Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "research_objective_id": {
      "type": "string",
      "minLength": 1
    },
    "anchor": {
      "type": "string",
      "minLength": 1
    },
    "notes": {
      "type": "string",
      "minLength": 1
    },
    "max_matches": {
      "type": "integer",
      "minimum": 1,
      "maximum": 10
    },
    "hints": {
      "type": "object",
      "properties": {
        "domain": {
          "type": "string",
          "minLength": 1
        },
        "url": {
          "type": "string",
          "minLength": 1
        },
        "linkedin_url": {
          "type": "string",
          "minLength": 1
        }
      },
      "additionalProperties": false
    }
  },
  "required": [
    "anchor"
  ],
  "additionalProperties": false
}
Output schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "status": {
      "type": "string"
    },
    "trace_id": {
      "type": "string"
    },
    "research_objective_id": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "records": {
      "type": "array",
      "items": {
        "type": "object",
        "propertyNames": {
          "type": "string"
        },
        "additionalProperties": {}
      }
    },
    "issues": {
      "type": "array",
      "items": {}
    },
    "receipt": {
      "type": "object",
      "propertyNames": {
        "type": "string"
      },
      "additionalProperties": {}
    }
  },
  "required": [
    "status",
    "records",
    "issues",
    "receipt"
  ],
  "additionalProperties": {}
}

get_company

Load the current company detail view from SCRYU.

companies / read-only

Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "company_id": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "company_id"
  ],
  "additionalProperties": false
}
Output schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "company": {
      "type": "object",
      "propertyNames": {
        "type": "string"
      },
      "additionalProperties": {}
    }
  },
  "required": [
    "company"
  ],
  "additionalProperties": {}
}

list_opportunities

List SCRYU opportunities in a pipeline or queue-shaped view with filters for stage, status, owner, company, health, staleness, due state, and text.

opportunities / read-only

Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "stage": {
      "type": "string",
      "enum": [
        "identified",
        "qualifying",
        "scoping",
        "proposal",
        "contracting",
        "active",
        "won",
        "lost",
        "archived"
      ]
    },
    "status": {
      "type": "string",
      "enum": [
        "open",
        "paused",
        "closed_won",
        "closed_lost",
        "archived"
      ]
    },
    "owner_operator_user_id": {
      "type": "string",
      "minLength": 1
    },
    "company_id": {
      "type": "string",
      "minLength": 1
    },
    "health": {
      "type": "string",
      "enum": [
        "on_track",
        "needs_attention",
        "blocked",
        "stale",
        "unknown"
      ]
    },
    "stale_only": {
      "type": "boolean"
    },
    "due": {
      "type": "string",
      "enum": [
        "overdue",
        "upcoming"
      ]
    },
    "query": {
      "type": "string",
      "minLength": 1
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 250
    }
  },
  "additionalProperties": false
}
Output schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunities": {
      "type": "array",
      "items": {
        "type": "object",
        "propertyNames": {
          "type": "string"
        },
        "additionalProperties": {}
      }
    }
  },
  "required": [
    "opportunities"
  ],
  "additionalProperties": {}
}

get_opportunity

Load the full SCRYU opportunity detail read model: company, people, requirements, tasks, notes, activity, signals, and coverage.

opportunities / read-only

Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity_id": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "opportunity_id"
  ],
  "additionalProperties": false
}
Output schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity": {
      "type": "object",
      "propertyNames": {
        "type": "string"
      },
      "additionalProperties": {}
    }
  },
  "required": [
    "opportunity"
  ],
  "additionalProperties": {}
}

create_opportunity

Create a SCRYU opportunity linked to an existing company, with optional source records, spend estimate, next action, and initial note.

opportunities

Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "company_id": {
      "type": "string",
      "minLength": 1
    },
    "name": {
      "type": "string",
      "minLength": 1
    },
    "summary": {
      "type": "string",
      "minLength": 1
    },
    "stage": {
      "type": "string",
      "enum": [
        "identified",
        "qualifying",
        "scoping",
        "proposal",
        "contracting",
        "active",
        "won",
        "lost",
        "archived"
      ]
    },
    "status": {
      "type": "string",
      "enum": [
        "open",
        "paused",
        "closed_won",
        "closed_lost",
        "archived"
      ]
    },
    "priority": {
      "type": "string",
      "enum": [
        "low",
        "medium",
        "high",
        "urgent"
      ]
    },
    "health": {
      "type": "string",
      "enum": [
        "on_track",
        "needs_attention",
        "blocked",
        "stale",
        "unknown"
      ]
    },
    "owner_operator_user_id": {
      "type": "string",
      "minLength": 1
    },
    "primary_contact_person_id": {
      "type": "string",
      "minLength": 1
    },
    "source_search_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1
      }
    },
    "source_research_objective_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1
      }
    },
    "estimated_spend": {
      "type": "object",
      "properties": {
        "min": {
          "type": "number",
          "minimum": 0
        },
        "max": {
          "type": "number",
          "minimum": 0
        },
        "currency": {
          "type": "string",
          "const": "USD"
        },
        "period": {
          "type": "string",
          "enum": [
            "one_time",
            "monthly",
            "annual"
          ]
        },
        "confidence": {
          "type": "string",
          "enum": [
            "low",
            "medium",
            "high"
          ]
        },
        "basis": {
          "type": "string",
          "minLength": 1
        },
        "source_note_ids": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        }
      },
      "required": [
        "confidence",
        "basis"
      ],
      "additionalProperties": false
    },
    "target_close_date": {
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    },
    "next_action": {
      "type": "string",
      "minLength": 1
    },
    "next_action_due_at": {
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    },
    "initial_note": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string",
          "minLength": 1,
          "maxLength": 160
        },
        "body_markdown": {
          "type": "string",
          "minLength": 1,
          "maxLength": 65536
        },
        "tags": {
          "maxItems": 20,
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "source_urls": {
          "maxItems": 20,
          "type": "array",
          "items": {
            "type": "string",
            "format": "uri"
          }
        },
        "related_note_ids": {
          "maxItems": 20,
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "created_from_objective_id": {
          "type": "string",
          "minLength": 1
        }
      },
      "required": [
        "title",
        "body_markdown"
      ],
      "additionalProperties": false
    }
  },
  "required": [
    "company_id",
    "name"
  ],
  "additionalProperties": false
}
Output schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity": {
      "type": "object",
      "propertyNames": {
        "type": "string"
      },
      "additionalProperties": {}
    },
    "receipts": {
      "type": "object",
      "propertyNames": {
        "type": "string"
      },
      "additionalProperties": {}
    }
  },
  "required": [
    "opportunity",
    "receipts"
  ],
  "additionalProperties": {}
}

update_opportunity

Patch core SCRYU opportunity fields. Use move_opportunity_stage for explicit stage transitions.

opportunities

Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity_id": {
      "type": "string",
      "minLength": 1
    },
    "name": {
      "type": "string",
      "minLength": 1
    },
    "summary": {
      "anyOf": [
        {
          "type": "string",
          "minLength": 1
        },
        {
          "type": "null"
        }
      ]
    },
    "priority": {
      "type": "string",
      "enum": [
        "low",
        "medium",
        "high",
        "urgent"
      ]
    },
    "health": {
      "type": "string",
      "enum": [
        "on_track",
        "needs_attention",
        "blocked",
        "stale",
        "unknown"
      ]
    },
    "status": {
      "type": "string",
      "enum": [
        "open",
        "paused",
        "closed_won",
        "closed_lost",
        "archived"
      ]
    },
    "owner_operator_user_id": {
      "anyOf": [
        {
          "type": "string",
          "minLength": 1
        },
        {
          "type": "null"
        }
      ]
    },
    "primary_contact_person_id": {
      "anyOf": [
        {
          "type": "string",
          "minLength": 1
        },
        {
          "type": "null"
        }
      ]
    },
    "estimated_spend": {
      "anyOf": [
        {
          "type": "object",
          "properties": {
            "min": {
              "type": "number",
              "minimum": 0
            },
            "max": {
              "type": "number",
              "minimum": 0
            },
            "currency": {
              "type": "string",
              "const": "USD"
            },
            "period": {
              "type": "string",
              "enum": [
                "one_time",
                "monthly",
                "annual"
              ]
            },
            "confidence": {
              "type": "string",
              "enum": [
                "low",
                "medium",
                "high"
              ]
            },
            "basis": {
              "type": "string",
              "minLength": 1
            },
            "source_note_ids": {
              "type": "array",
              "items": {
                "type": "string",
                "minLength": 1
              }
            }
          },
          "required": [
            "confidence",
            "basis"
          ],
          "additionalProperties": false
        },
        {
          "type": "null"
        }
      ]
    },
    "target_close_date": {
      "anyOf": [
        {
          "type": "integer",
          "minimum": 0,
          "maximum": 9007199254740991
        },
        {
          "type": "null"
        }
      ]
    },
    "next_action": {
      "anyOf": [
        {
          "type": "string",
          "minLength": 1
        },
        {
          "type": "null"
        }
      ]
    },
    "next_action_due_at": {
      "anyOf": [
        {
          "type": "integer",
          "minimum": 0,
          "maximum": 9007199254740991
        },
        {
          "type": "null"
        }
      ]
    }
  },
  "required": [
    "opportunity_id"
  ],
  "additionalProperties": false
}
Output schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity_id": {
      "type": "string"
    },
    "updated": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "opportunity_id",
    "updated"
  ],
  "additionalProperties": {}
}

move_opportunity_stage

Move a SCRYU opportunity through an explicit stage transition.

opportunities

Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity_id": {
      "type": "string",
      "minLength": 1
    },
    "stage": {
      "type": "string",
      "enum": [
        "identified",
        "qualifying",
        "scoping",
        "proposal",
        "contracting",
        "active",
        "won",
        "lost",
        "archived"
      ]
    },
    "status": {
      "type": "string",
      "enum": [
        "open",
        "paused",
        "closed_won",
        "closed_lost",
        "archived"
      ]
    },
    "note": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "opportunity_id",
    "stage"
  ],
  "additionalProperties": false
}
Output schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity_id": {
      "type": "string"
    },
    "stage": {
      "type": "string",
      "enum": [
        "identified",
        "qualifying",
        "scoping",
        "proposal",
        "contracting",
        "active",
        "won",
        "lost",
        "archived"
      ]
    },
    "status": {
      "type": "string",
      "enum": [
        "open",
        "paused",
        "closed_won",
        "closed_lost",
        "archived"
      ]
    }
  },
  "required": [
    "opportunity_id",
    "stage",
    "status"
  ],
  "additionalProperties": {}
}

add_opportunity_context

Append opportunity context: note, spend basis, next action, requirements, tasks, and discovered people. Writes are explicit and receipt-backed.

opportunities

Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity_id": {
      "type": "string",
      "minLength": 1
    },
    "note": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string",
          "minLength": 1,
          "maxLength": 160
        },
        "body_markdown": {
          "type": "string",
          "minLength": 1,
          "maxLength": 65536
        },
        "tags": {
          "maxItems": 20,
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "source_urls": {
          "maxItems": 20,
          "type": "array",
          "items": {
            "type": "string",
            "format": "uri"
          }
        },
        "related_note_ids": {
          "maxItems": 20,
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        },
        "created_from_objective_id": {
          "type": "string",
          "minLength": 1
        }
      },
      "required": [
        "title",
        "body_markdown"
      ],
      "additionalProperties": false
    },
    "estimated_spend": {
      "type": "object",
      "properties": {
        "min": {
          "type": "number",
          "minimum": 0
        },
        "max": {
          "type": "number",
          "minimum": 0
        },
        "currency": {
          "type": "string",
          "const": "USD"
        },
        "period": {
          "type": "string",
          "enum": [
            "one_time",
            "monthly",
            "annual"
          ]
        },
        "confidence": {
          "type": "string",
          "enum": [
            "low",
            "medium",
            "high"
          ]
        },
        "basis": {
          "type": "string",
          "minLength": 1
        },
        "source_note_ids": {
          "type": "array",
          "items": {
            "type": "string",
            "minLength": 1
          }
        }
      },
      "required": [
        "confidence",
        "basis"
      ],
      "additionalProperties": false
    },
    "next_action": {
      "type": "string",
      "minLength": 1
    },
    "next_action_due_at": {
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    },
    "requirements": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "enum": [
              "technical",
              "security",
              "legal",
              "procurement",
              "commercial",
              "staffing",
              "implementation",
              "data",
              "success_criteria",
              "other"
            ]
          },
          "title": {
            "type": "string",
            "minLength": 1
          },
          "description": {
            "type": "string",
            "minLength": 1
          },
          "status": {
            "type": "string",
            "enum": [
              "open",
              "in_progress",
              "blocked",
              "satisfied",
              "dismissed"
            ]
          },
          "priority": {
            "type": "string",
            "enum": [
              "low",
              "medium",
              "high",
              "urgent"
            ]
          },
          "owner_operator_user_id": {
            "type": "string",
            "minLength": 1
          },
          "due_at": {
            "type": "integer",
            "minimum": 0,
            "maximum": 9007199254740991
          },
          "source_note_ids": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1
            }
          }
        },
        "required": [
          "category",
          "title"
        ],
        "additionalProperties": false
      }
    },
    "tasks": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "minLength": 1
          },
          "description": {
            "type": "string",
            "minLength": 1
          },
          "status": {
            "type": "string",
            "enum": [
              "open",
              "in_progress",
              "blocked",
              "completed",
              "dismissed"
            ]
          },
          "assignee_operator_user_id": {
            "type": "string",
            "minLength": 1
          },
          "due_at": {
            "type": "integer",
            "minimum": 0,
            "maximum": 9007199254740991
          }
        },
        "required": [
          "title"
        ],
        "additionalProperties": false
      }
    },
    "people": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "person_id": {
            "type": "string",
            "minLength": 1
          },
          "role": {
            "type": "string",
            "enum": [
              "primary_buyer",
              "economic_buyer",
              "champion",
              "technical_evaluator",
              "security",
              "legal",
              "procurement",
              "blocker",
              "advisor",
              "stakeholder",
              "unknown",
              "owner",
              "supporting_operator",
              "technical_owner",
              "delivery_owner",
              "executive_sponsor"
            ]
          },
          "relationship_status": {
            "type": "string",
            "enum": [
              "unknown",
              "active",
              "supportive",
              "neutral",
              "blocked"
            ]
          },
          "notes": {
            "type": "string",
            "minLength": 1
          },
          "is_primary": {
            "type": "boolean"
          }
        },
        "required": [
          "person_id",
          "role"
        ],
        "additionalProperties": false
      }
    }
  },
  "required": [
    "opportunity_id"
  ],
  "additionalProperties": false
}
Output schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity_id": {
      "type": "string"
    }
  },
  "additionalProperties": {}
}

list_opportunity_tasks

List opportunity task queues for one opportunity, optionally filtered by status.

opportunities / read-only

Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity_id": {
      "type": "string",
      "minLength": 1
    },
    "status": {
      "type": "string",
      "enum": [
        "open",
        "in_progress",
        "blocked",
        "completed",
        "dismissed"
      ]
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 250
    }
  },
  "required": [
    "opportunity_id"
  ],
  "additionalProperties": false
}
Output schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "tasks": {
      "type": "array",
      "items": {
        "type": "object",
        "propertyNames": {
          "type": "string"
        },
        "additionalProperties": {}
      }
    }
  },
  "required": [
    "tasks"
  ],
  "additionalProperties": {}
}

upsert_opportunity_task

Create or update a due-date action for an opportunity.

opportunities

Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity_id": {
      "type": "string",
      "minLength": 1
    },
    "task_id": {
      "type": "string",
      "minLength": 1
    },
    "title": {
      "type": "string",
      "minLength": 1
    },
    "description": {
      "anyOf": [
        {
          "type": "string",
          "minLength": 1
        },
        {
          "type": "null"
        }
      ]
    },
    "status": {
      "type": "string",
      "enum": [
        "open",
        "in_progress",
        "blocked",
        "completed",
        "dismissed"
      ]
    },
    "assignee_operator_user_id": {
      "anyOf": [
        {
          "type": "string",
          "minLength": 1
        },
        {
          "type": "null"
        }
      ]
    },
    "due_at": {
      "anyOf": [
        {
          "type": "integer",
          "minimum": 0,
          "maximum": 9007199254740991
        },
        {
          "type": "null"
        }
      ]
    },
    "source_requirement_id": {
      "anyOf": [
        {
          "type": "string",
          "minLength": 1
        },
        {
          "type": "null"
        }
      ]
    },
    "source_signal_id": {
      "anyOf": [
        {
          "type": "string",
          "minLength": 1
        },
        {
          "type": "null"
        }
      ]
    }
  },
  "required": [
    "opportunity_id",
    "title"
  ],
  "additionalProperties": false
}
Output schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "task": {
      "type": "object",
      "propertyNames": {
        "type": "string"
      },
      "additionalProperties": {}
    }
  },
  "required": [
    "task"
  ],
  "additionalProperties": {}
}

complete_opportunity_task

Complete an opportunity task with an optional completion note.

opportunities

Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity_id": {
      "type": "string",
      "minLength": 1
    },
    "task_id": {
      "type": "string",
      "minLength": 1
    },
    "note": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "opportunity_id",
    "task_id"
  ],
  "additionalProperties": false
}
Output schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {},
  "additionalProperties": {}
}

scope_opportunity

Return deterministic scoping guidance for an opportunity: missing roles, requirements, risks, spend basis, and suggested next actions.

opportunities / read-only

Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity_id": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "opportunity_id"
  ],
  "additionalProperties": false
}
Output schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity_id": {
      "type": "string"
    },
    "required_roles": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "required_needs": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "risks": {
      "type": "array",
      "items": {}
    },
    "missing_information": {
      "type": "array",
      "items": {}
    },
    "spend_basis": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "suggested_next_actions": {
      "type": "array",
      "items": {}
    },
    "coverage": {
      "type": "object",
      "propertyNames": {
        "type": "string"
      },
      "additionalProperties": {}
    }
  },
  "required": [
    "opportunity_id",
    "required_roles",
    "required_needs",
    "risks",
    "missing_information",
    "suggested_next_actions",
    "coverage"
  ],
  "additionalProperties": {}
}

get_opportunity_activity

Load recent opportunity timeline activity for one opportunity or the workspace queue.

opportunities / read-only

Input schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "opportunity_id": {
      "type": "string",
      "minLength": 1
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 250
    }
  },
  "required": [
    "opportunity_id"
  ],
  "additionalProperties": false
}
Output schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "activity": {
      "type": "array",
      "items": {
        "type": "object",
        "propertyNames": {
          "type": "string"
        },
        "additionalProperties": {}
      }
    }
  },
  "required": [
    "activity"
  ],
  "additionalProperties": {}
}

Resources

opportunities

Current SCRYU opportunity pipeline snapshot.

scryu://opportunities

opportunity

SCRYU opportunity detail by public opportunity id.

scryu://opportunities/{opportunity_id}

company

SCRYU company detail by public company id.

scryu://companies/{company_id}