← All WebMCP sites

seedthink.ai

AI & Agentshttps://seedthink.ai/listed as of 2026-08-27
A tiny distilled LLM paired with a verified knowledge graph that learns, verifies, and compounds with every interaction.
Run a live auditWe load the site in a real browser and score the tools it gives an agent.

Tools

about_seedthinkanswerimperative
Explain what Seedthink is, list the tools this page exposes, and say which ones need a signed-in account. Call this first if you are unsure which tool to use. No arguments, no sign-in, no tokens.
Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
ask_seedthinkactimperative
Ask the main Seedthink chat — the platform's own reasoning. Routes the question across the signed-in user's Seeds and the public knowledge graph, grounds the answer in verified facts, and returns the finished answer as text. Use this for decisions, comparisons, judgement calls or 'what should I do' questions. Works without sign-in on a small daily token allowance; costs 1 token (3 with research: true). Prefer ask_seed when the answer must come from one specific Seed only.
Input schema
{
  "type": "object",
  "properties": {
    "question": {
      "type": "string",
      "minLength": 3,
      "maxLength": 4000,
      "description": "The question or decision to put to Seedthink."
    },
    "research": {
      "type": "boolean",
      "default": false,
      "description": "True runs the deeper multi-source research pass: slower and costs 3 tokens instead of 1."
    }
  },
  "required": [
    "question"
  ],
  "additionalProperties": false
}
search_seedthink_marketplaceanswerimperative
Search the public Seedthink marketplace of published Seeds and Models by keyword or niche. No sign-in needed and no tokens spent. Returns in-app paths you can hand to open_seedthink_page.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "maxLength": 120,
      "description": "Keyword or niche to match. Omit to list everything published."
    },
    "kind": {
      "type": "string",
      "enum": [
        "any",
        "seed",
        "model"
      ],
      "default": "any",
      "description": "Restrict results to Seeds, Models, or both."
    },
    "limit": {
      "type": "integer",
      "minimum": 1,
      "maximum": 25,
      "default": 10,
      "description": "Max results per kind (1–25)."
    }
  },
  "additionalProperties": false
}
open_seedthink_pageactimperative
Navigate the open Seedthink tab to a known destination so the user can see what you did. Pass target: "seed" together with seed_id to open one Seed's dashboard; every other target ignores seed_id. Costs no tokens and changes no data.
Input schema
{
  "type": "object",
  "properties": {
    "target": {
      "type": "string",
      "enum": [
        "seed",
        "my_seeds",
        "marketplace",
        "chat",
        "billing",
        "agent_integrations",
        "pricing",
        "agi_progress"
      ],
      "description": "Where to go. Use \"seed\" (with seed_id) for a single Seed dashboard."
    },
    "seed_id": {
      "type": "string",
      "format": "uuid",
      "description": "Required only when target is \"seed\"."
    }
  },
  "required": [
    "target"
  ],
  "additionalProperties": false,
  "oneOf": [
    {
      "properties": {
        "target": {
          "const": "seed"
        }
      },
      "required": [
        "target",
        "seed_id"
      ]
    },
    {
      "properties": {
        "target": {
          "enum": [
            "my_seeds",
            "marketplace",
            "chat",
            "billing",
            "agent_integrations",
            "pricing",
            "agi_progress"
          ]
        }
      },
      "required": [
        "target"
      ]
    }
  ]
}
Listings are sourced from public community registries and shown as reported.