crowdspace
Server Details
Search 900+ crowdfunding and P2P lending platforms, market data and regulation by country.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
The tools separate cleanly by purpose: news, market aggregates, regulation, platform search, and error reporting. There is minor overlap between get_market_overview and get_regulatory_map on regulated-platform counts, but the descriptions give enough guidance to choose between them.
All tool names follow a consistent verb_noun snake_case pattern: get_industry_news, get_market_overview, get_regulatory_map, report_inaccuracy, search_platforms. There is no mixing of styles or vague verbs.
Five tools is well-scoped for a read-only research and correction server. Each tool earns its place and none are redundant or purely decorative.
The server covers the main user-facing needs: platform lookup, market-level statistics, regulatory information, recent news, and a correction pipeline. It deliberately omits full platform profiles and detailed terms, which is a minor gap but clearly acknowledged as out of scope.
Available Tools
5 toolsget_industry_newsIndustry newsARead-onlyIdempotentInspect
Recent crowdfunding and P2P lending news: headline, summary, publication date, category, and a link to the article at its publisher. Filter by category, by kind (editorial — written by CrowdSpace, syndicated — aggregated from the industry press, or all), and by date range. Use it for "what happened recently / any news about X" questions, and cite the URL each item carries — for a syndicated item that is the original publisher, not CrowdSpace. Do NOT use it to establish facts about a platform: it is a news feed, not the catalogue; search_platforms holds the current data.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | Published on or before, YYYY-MM-DD. | |
| from | No | Published on or after, YYYY-MM-DD. | |
| kind | No | all (default), editorial (written by CrowdSpace) or syndicated (aggregated from the press). | |
| lang | No | Language of the returned items. | |
| page | No | Page number, 1-based. | |
| category | No | News category slug. | |
| per_page | No | Items per call, 1-25. Default 20. |
Output Schema
| Name | Required | Description |
|---|---|---|
| meta | Yes | Paging and the tier that answered. |
| news | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering safety. The description adds a behavioral detail beyond schema: for syndicated items, the URL points to the original publisher, not CrowdSpace, which matters when citing sources. It also clarifies editorial vs syndicated semantics, though the schema already explains these values, so this is a solid 4 rather than a 5.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Each sentence earns its place: content fields, filtering capability, when to use, citation guidance, and when not to use. The description is front-loaded with the core purpose and finishes with an actionable exclusion. No filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With zero required parameters, 100% schema coverage, an output schema available, and rich annotations, the description only needed to fill gaps: use case, citation rule, and news-feed vs catalogue distinction. It does so completely, leaving nothing an agent must guess.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so every parameter (to, from, kind, lang, page, category, per_page) already has documentation in the schema. The description restates category/kind/date-range filtering at a high level but adds no parameter-level meaning beyond the schema. Baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: retrieving recent crowdfunding and P2P lending news, and enumerates the fields each item carries. It distinguishes itself from the catalogue by explicitly stating it is a news feed and that search_platforms holds current platform data, so an agent can tell tools apart without inspecting schemas.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives an explicit positive trigger ('what happened recently / any news about X' questions) and an explicit negative boundary (do not use it to establish facts about a platform). It names the alternative tool, search_platforms, and explains why it is better suited for the excluded case.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_market_overviewMarket overviewARead-onlyIdempotentInspect
Aggregate figures for a slice of the crowdfunding market: how many platforms operate there, how many are regulated and by whom, the minimum / maximum / average advertised return and minimum investment, the spread of funding volumes and founding years, and the distribution across investment types and industries. Slice it by country, industry, region or any other catalogue filter — omit them all for the whole market. Use it for "how big / how regulated / what is typical" questions. Do NOT use it to name platforms — it returns no platform names; search_platforms does that. Figures reflect the live catalogue at the time of the call.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | Language of the returned titles and profile URLs. | |
| type | No | Investment type. Most common: equity (287), p2p-lending (273), debt (249), tokenized (35), mini-bonds (16). | |
| region | No | Region. Most common: europe (462), north-america (86), mena (63), southeast-asia (53), latin-america (31). | |
| country | No | Country of operation. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom, es for Spain. Most common: fr (117), de (98), es (90), nl (88), it (84). | |
| listing | No | investment (default) — platforms you invest through; fundraising — donation and reward platforms. The two have different filters. | investment |
| industry | No | Industry. Most common: sme (324), real-estate (293), startups (152), green-energy (81), personal-loans (65). |
Output Schema
| Name | Required | Description |
|---|---|---|
| meta | Yes | Paging and the tier that answered. |
| overview | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description details the kind of aggregate figures returned (platform counts, regulators, return ranges, investment minimums, volumes, years, distributions) and notes figures reflect the live catalogue. This is consistent with the readOnly and idempotent annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is comprehensive yet focused, front-loading the purpose and then covering usage, exclusions, and data freshness. The repetition about slicing/filtering reinforces the optional filter behavior without being excessive.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only aggregate tool, the description covers what the tool returns, how to filter, what not to use it for, and the alternative sibling tool. It is complete enough for an agent to select and invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Every parameter has a meaningful description, including enums, defaults, and common values (e.g., country codes and frequency counts). The listing parameter is clearly explained with its default and the distinction between investment and fundraising.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Aggregate figures for a slice of the crowdfunding market') and the specific resource (crowdfunding market data), and explicitly distinguishes itself from sibling tools by noting it returns no platform names.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides direct usage guidance: use for 'how big / how regulated / what is typical' questions, and explicitly says not to use it for naming platforms, pointing to search_platforms as the alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_regulatory_mapRegulatory mapARead-onlyIdempotentInspect
The regulatory picture per country: the regime in force (ECSPR across the EU, national regimes elsewhere), the authorities that supervise platforms there, the main licence type, and how many platforms are REGISTERED in that country and how many of them are regulated. Use it for "is crowdfunding regulated in X / who regulates it / how many platforms are licensed there" questions. The counts are by country of REGISTRATION — the platforms an authority there supervises — not by the countries a platform serves. For "how many platforms operate in X", use search_platforms with the country filter instead; that number is larger. Omit the country to get the whole map — a long answer, so name a country when you have one. It reports what the catalogue records about supervision; it is not legal advice and does not cover tax or investor-eligibility rules.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | Language of the names returned. | |
| country | No | Country, matched on country of registration. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom, es for Spain. Omit for every country at once. |
Output Schema
| Name | Required | Description |
|---|---|---|
| meta | Yes | Paging and the tier that answered. |
| countries | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare read-only and idempotent behavior, so the description does not need to repeat that. The description adds valuable interpretive context about registration vs. service and includes a disclaimer that it is not legal advice, which helps set expectations without contradicting the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single focused paragraph that front-loads the core purpose and then efficiently covers scope, alternate usage, and caveats. Every sentence adds unique value without redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description covers the data scope, parameter semantics, alternative tool usage, and important limitations. While it does not detail the output schema, that is already provided separately, and the description gives enough context for an agent to decide when and how to call the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Although the schema descriptions cover all parameters, the tool description enriches their meaning substantially: it clarifies that country is matched on registration, explains the effect of omitting it, and gives concrete examples of questions each parameter answers. This goes beyond the schema's basic type and enum info.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific resource ('regulatory picture per country') and the concrete data returned (regime, authorities, licence type, counts). It clearly differentiates from sibling tools, especially search_platforms, by focusing on regulation rather than platform operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit guidance is provided for when to use this tool versus search_platforms, including example questions and the note that platform-service counts are larger. It also advises on omitting or specifying a country, which directly informs parameter usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
report_inaccuracyReport an inaccuracyAInspect
Report that something in the CrowdSpace catalogue is wrong or out of date — a minimum investment that no longer matches the platform, a regulator that changed, a dead website. Use it when a reader points out an error, or when you can see the catalogue disagrees with a source you have. It does NOT change the site: the report goes to a queue a person reviews, and the tool result says so — do not tell the user the data has been corrected. Say what is wrong in a sentence, and include the URL you saw it on when you have one; a report nobody can check is one nobody can act on.
| Name | Required | Description | Default |
|---|---|---|---|
| field | Yes | Which field is wrong. Use `other` only when none of the rest fits. | |
| problem | Yes | What is wrong with it, in a sentence. | |
| platform | Yes | The platform's slug — the last segment of the profile URL that search_platforms returns, e.g. `mintos`. | |
| evidence_url | No | Where you saw the correct value — the platform's own page, a regulator register. | |
| suggested_value | No | What it should say, if you know. |
Output Schema
| Name | Required | Description |
|---|---|---|
| report | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description adds important behavior beyond the annotations: the report goes to a human-reviewed queue and does not change the live site. It also tells the agent not to tell the user the data has been corrected, and notes the tool result itself says so. This gives the agent the necessary side-effect context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well structured, front-loaded with the tool's purpose, and each sentence earns its place: examples of inaccuracies, when to use it, what it does not do, and how to write the report. It is dense but not bloated.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With a full input schema, an output schema, and meaningful annotations, the description completes the picture by explaining the non-mutating report flow, the human-review queue, required problem phrasing, and evidence URL. The agent can use this tool correctly without guessing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the parameters are already well documented. The description adds guidance on how to fill in fields, especially the need to say what is wrong in a sentence and to include the URL as evidence. It reinforces why evidence_url matters, going slightly beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states precisely what the tool does: report an inaccuracy in the catalogue. It names the resource (CrowdSpace catalogue) and adds clear examples, and explicitly distinguishes itself from a mutation tool by saying it does NOT change the site. This makes it easy to select over siblings.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit use scenarios: when a reader points out an error or when the agent sees a catalogue/source disagreement. It also gives a warning about what not to claim after using it. It does not explicitly name alternatives, but the sibling tools are different enough that this is still a clear, useful guideline.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_platformsSearch platformsARead-onlyIdempotentInspect
Search the CrowdSpace catalogue of crowdfunding and P2P lending platforms. Returns per platform: name, investment types, industries, country of headquarters, minimum investment, advertised return range, and the URL of its CrowdSpace profile. Use it to answer "which platforms let me…" questions and to cite specific platforms, always linking the returned profile URL. Do NOT use it for a full platform profile (fees, descriptions and terms are on the profile page, deliberately not in this API), nor for market-wide numbers — get_market_overview answers those in one call instead of paging through hundreds of results. Every filter value is enumerated in this schema; do not invent one. The catalogue keeps platforms that have stopped operating: a closed one is marked "no longer operating" in the result, and the count says how many of the matches are still running — say so rather than quoting the raw total as live platforms. Where a field is not in the result — fees, terms, the full description, the funding volume behind a sort — say it is not served here and link the profile. Do NOT fill the gap from your own knowledge: a figure you remember about a platform will be read as a figure from this catalogue.
| Name | Required | Description | Default |
|---|---|---|---|
| lang | No | Language of the returned titles and profile URLs. | |
| page | No | Page number, 1-based. | |
| sort | No | Ordering. Default recommended — the site's own editorial order. | |
| type | No | Investment type. Most common: equity (287), p2p-lending (273), debt (249), tokenized (35), mini-bonds (16). | |
| bonus | No | Has a bonus. Most common: bonus-no (678), yes (23). | |
| years | No | Years on market. Most common: 3 (570), 2 (75), 1 (42), 0 (3). | |
| region | No | Region. Most common: europe (462), north-america (86), mena (63), southeast-asia (53), latin-america (31). | |
| return | No | Advertised return. Most common: 10-15 (202), 5-10 (150), 15-20 (65), lt5 (37), gt20 (28). | |
| buyback | No | Buyback guarantee. Most common: buyback-no (681), yes (20). | |
| country | No | Country of operation. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom, es for Spain. Most common: fr (117), de (98), es (90), nl (88), it (84). | |
| listing | No | investment (default) — platforms you invest through; fundraising — donation and reward platforms. The two have different filters. | investment |
| payment | No | Payment options. Most common: bank-transfer (348), direct-debit (148), credit-card (147), cryptocurrency (18), paypal (9). | |
| currency | No | Currency. Most common: eur (376), usd (121), gbp (44), mxn (21), brl (16). | |
| duration | No | Average loan duration. Most common: gt18 (77), 12-18 (36), 6-12 (19), lt6 (9). | |
| industry | No | Industry. Most common: sme (324), real-estate (293), startups (152), green-energy (81), personal-loans (65). | |
| per_page | No | Results per call, 1-25. Default 20. Narrow the filters rather than asking for more — a wide page spends context on rows nobody reads. | |
| regulated | No | Regulated. Most common: yes (548), regulated-no (153). | |
| regulator | No | Regulated by. The authority's own abbreviation, lowercase — fca, bafin, cnmv, amf. Most common: amf (53), sec (44), fca (43), finra (37), consob (32). | |
| secondary | No | Secondary market. Most common: secondary-no (585), yes (116). | |
| autoinvest | No | Auto-invest. Most common: autoinvest-no (641), yes (60). | |
| headquarter | No | Country of headquarters. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom. Most common: gb (64), fr (63), us (47), es (40), de (39). | |
| registration | No | Country of registration. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom. Most common: gb (63), fr (62), us (46), de (39), es (38). | |
| min_investment | No | Minimum investment. Most common: 100-500 (203), 10-100 (177), 1000-5000 (101), lt10 (71), 500-1000 (67). |
Output Schema
| Name | Required | Description |
|---|---|---|
| meta | Yes | Paging and the tier that answered. |
| platforms | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, and the description adds substantial behavioral context beyond them: the catalogue retains closed platforms marked 'no longer operating', the count distinguishes live from defunct matches, and fields like fees/terms/funding volume are deliberately absent. The anti-hallucination guardrail ('Do NOT fill the gap from your own knowledge') is valuable behavioral disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Dense but purposeful: purpose, return fields, use cases, exclusions with alternatives, enum-safety warning, closed-platform caveat, and gap-handling instructions each earn their place. The content is front-loaded with scope and return values before caveats. No filler sentences.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 23-parameter search tool with complete schema documentation, an output schema, and safety/idempotency annotations, the description covers all non-obvious behaviors an agent could get wrong: closed-platform semantics, live-count interpretation, absent-field handling, and knowledge-fabrication prevention. Nothing critical is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the 23 parameters are already fully documented — baseline is 3. The description adds value above the schema with the warning that every filter value is enumerated and must not be invented, plus guidance to narrow filters rather than page through wide result sets. This elevates it slightly beyond the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb and resource ('Search the CrowdSpace catalogue of crowdfunding and P2P lending platforms') and enumerates the per-platform return fields. It distinguishes itself from siblings by explicitly naming what it is not for (full platform profiles) and names get_market_overview as the tool for market-wide numbers.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use the tool ('which platforms let me…' questions, citing specific platforms), and provides clear exclusions with the alternative named: get_market_overview for market-wide numbers, and the profile page for fees/terms/descriptions. No inference is required to route correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
- Changed
search_platforms2 fields changed- changed
Input schema / properties / autoinvest / descriptionPrevious value: -"Auto-invest. Most common: autoinvest-no (642), yes (59)."New value: +"Auto-invest. Most common: autoinvest-no (641), yes (60)." - changed
Input schema / properties / duration / descriptionPrevious value: -"Average loan duration. Most common: gt18 (77), 12-18 (36), 6-12 (19), lt6 (8)."New value: +"Average loan duration. Most common: gt18 (77), 12-18 (36), 6-12 (19), lt6 (9)."
3 tool updates
- Changed
get_market_overview4 fields changed- changed
Input schema / properties / country / items / enumPrevious value: -[ - "ad", - "ao", - "al", - "ar", - "au", - "at", - "be", - "bo", - "ba", - "bg", - "br", - "ca", - "co", - "hr", - "cy", - "cz", - "dk", - "ee", - "fi", - "fr", - "de", - "gr", - "hu", - "is", - "in", - "id", - "ie", - "il", - "it", - "ke", - "lv", - "li", - "lt", - "lu", - "mk", - "my", - "mt", - "mu", - "mx", - "md", - "mc", - "nl", - "nz", - "ng", - "no", - "pa", - "pe", - "pl", - "pt", - "ro", - "th", - "tr", - "sa", - "rs", - "sg", - "sk", - "si", - "es", - "za", - "se", - "ch", - "ae", - "gb", - "ua", - "us" -]New value: +[ + "ad", + "ao", + "al", + "ar", + "au", + "at", + "be", + "bo", + "ba", + "bg", + "br", + "ca", + "co", + "hr", + "cy", + "cz", + "dk", + "ee", + "fi", + "fr", + "de", + "gr", + "gn", + "hu", + "is", + "in", + "id", + "ie", + "il", + "it", + "ke", + "lv", + "li", + "lt", + "lu", + "mk", + "my", + "mt", + "mu", + "mx", + "md", + "mc", + "nl", + "nz", + "ng", + "no", + "pa", + "pe", + "pl", + "pt", + "ro", + "th", + "tr", + "sa", + "rs", + "sg", + "sk", + "si", + "es", + "za", + "se", + "ch", + "ae", + "gb", + "ua", + "us" +] - changed
Input schema / properties / industry / descriptionPrevious value: -"Industry. Most common: sme (324), real-estate (295), startups (151), green-energy (81), personal-loans (65)."New value: +"Industry. Most common: sme (324), real-estate (293), startups (152), green-energy (81), personal-loans (65)." - changed
Input schema / properties / region / descriptionPrevious value: -"Region. Most common: europe (462), north-america (87), mena (63), southeast-asia (53), latin-america (31)."New value: +"Region. Most common: europe (462), north-america (86), mena (63), southeast-asia (53), latin-america (31)." - changed
Input schema / properties / type / descriptionPrevious value: -"Investment type. Most common: equity (288), p2p-lending (272), debt (250), tokenized (35), mini-bonds (16)."New value: +"Investment type. Most common: equity (287), p2p-lending (273), debt (249), tokenized (35), mini-bonds (16)."
- Changed
get_regulatory_map1 field changed- changed
Input schema / properties / country / enumPrevious value: -[ - "ad", - "ao", - "al", - "ar", - "au", - "at", - "be", - "bo", - "ba", - "bg", - "br", - "ca", - "co", - "hr", - "cy", - "cz", - "dk", - "ee", - "fi", - "fr", - "de", - "gr", - "hu", - "is", - "in", - "id", - "ie", - "il", - "it", - "ke", - "lv", - "li", - "lt", - "lu", - "mk", - "my", - "mt", - "mu", - "mx", - "md", - "mc", - "nl", - "nz", - "ng", - "no", - "pa", - "pe", - "pl", - "pt", - "ro", - "th", - "tr", - "sa", - "rs", - "sg", - "sk", - "si", - "es", - "za", - "se", - "ch", - "ae", - "gb", - "ua", - "us" -]New value: +[ + "ad", + "ao", + "al", + "ar", + "au", + "at", + "be", + "bo", + "ba", + "bg", + "br", + "ca", + "co", + "hr", + "cy", + "cz", + "dk", + "ee", + "fi", + "fr", + "de", + "gr", + "gn", + "hu", + "is", + "in", + "id", + "ie", + "il", + "it", + "ke", + "lv", + "li", + "lt", + "lu", + "mk", + "my", + "mt", + "mu", + "mx", + "md", + "mc", + "nl", + "nz", + "ng", + "no", + "pa", + "pe", + "pl", + "pt", + "ro", + "th", + "tr", + "sa", + "rs", + "sg", + "sk", + "si", + "es", + "za", + "se", + "ch", + "ae", + "gb", + "ua", + "us" +]
- Changed
search_platforms17 fields changed- changed
Input schema / properties / autoinvest / descriptionPrevious value: -"Auto-invest. Most common: autoinvest-no (643), yes (59)."New value: +"Auto-invest. Most common: autoinvest-no (642), yes (59)." - changed
Input schema / properties / bonus / descriptionPrevious value: -"Has a bonus. Most common: bonus-no (679), yes (23)."New value: +"Has a bonus. Most common: bonus-no (678), yes (23)." - changed
Input schema / properties / buyback / descriptionPrevious value: -"Buyback guarantee. Most common: buyback-no (682), yes (20)."New value: +"Buyback guarantee. Most common: buyback-no (681), yes (20)." - changed
Input schema / properties / country / items / enumPrevious value: -[ - "ad", - "ao", - "al", - "ar", - "au", - "at", - "be", - "bo", - "ba", - "bg", - "br", - "ca", - "co", - "hr", - "cy", - "cz", - "dk", - "ee", - "fi", - "fr", - "de", - "gr", - "hu", - "is", - "in", - "id", - "ie", - "il", - "it", - "ke", - "lv", - "li", - "lt", - "lu", - "mk", - "my", - "mt", - "mu", - "mx", - "md", - "mc", - "nl", - "nz", - "ng", - "no", - "pa", - "pe", - "pl", - "pt", - "ro", - "th", - "tr", - "sa", - "rs", - "sg", - "sk", - "si", - "es", - "za", - "se", - "ch", - "ae", - "gb", - "ua", - "us" -]New value: +[ + "ad", + "ao", + "al", + "ar", + "au", + "at", + "be", + "bo", + "ba", + "bg", + "br", + "ca", + "co", + "hr", + "cy", + "cz", + "dk", + "ee", + "fi", + "fr", + "de", + "gr", + "gn", + "hu", + "is", + "in", + "id", + "ie", + "il", + "it", + "ke", + "lv", + "li", + "lt", + "lu", + "mk", + "my", + "mt", + "mu", + "mx", + "md", + "mc", + "nl", + "nz", + "ng", + "no", + "pa", + "pe", + "pl", + "pt", + "ro", + "th", + "tr", + "sa", + "rs", + "sg", + "sk", + "si", + "es", + "za", + "se", + "ch", + "ae", + "gb", + "ua", + "us" +] - changed
Input schema / properties / currency / descriptionPrevious value: -"Currency. Most common: eur (376), usd (120), gbp (44), mxn (22), brl (16)."New value: +"Currency. Most common: eur (376), usd (121), gbp (44), mxn (21), brl (16)." - changed
Input schema / properties / duration / descriptionPrevious value: -"Average loan duration. Most common: gt18 (78), 12-18 (36), 6-12 (19), lt6 (8)."New value: +"Average loan duration. Most common: gt18 (77), 12-18 (36), 6-12 (19), lt6 (8)." - changed
Input schema / properties / headquarter / items / enumPrevious value: -[ - "ao", - "ar", - "au", - "at", - "be", - "bo", - "bg", - "br", - "ca", - "co", - "hr", - "cy", - "cz", - "dk", - "ee", - "fi", - "fr", - "de", - "gr", - "hu", - "in", - "id", - "ie", - "il", - "it", - "ke", - "lv", - "lt", - "lu", - "my", - "mt", - "mu", - "mx", - "md", - "nl", - "nz", - "ng", - "no", - "pe", - "pl", - "pt", - "ro", - "th", - "tr", - "sa", - "sg", - "sk", - "es", - "za", - "se", - "ch", - "ae", - "gb", - "us" -]New value: +[ + "ao", + "ar", + "au", + "at", + "be", + "bo", + "bg", + "br", + "ca", + "co", + "hr", + "cy", + "cz", + "dk", + "ee", + "fi", + "fr", + "de", + "gr", + "gn", + "hu", + "in", + "id", + "ie", + "il", + "it", + "ke", + "lv", + "lt", + "lu", + "my", + "mt", + "mu", + "mx", + "md", + "nl", + "nz", + "ng", + "no", + "pe", + "pl", + "pt", + "ro", + "th", + "tr", + "sa", + "sg", + "sk", + "es", + "za", + "se", + "ch", + "ae", + "gb", + "us" +] - changed
Input schema / properties / industry / descriptionPrevious value: -"Industry. Most common: sme (324), real-estate (295), startups (151), green-energy (81), personal-loans (65)."New value: +"Industry. Most common: sme (324), real-estate (293), startups (152), green-energy (81), personal-loans (65)." - changed
Input schema / properties / min_investment / descriptionPrevious value: -"Minimum investment. Most common: 100-500 (204), 10-100 (176), 1000-5000 (101), lt10 (71), 500-1000 (68)."New value: +"Minimum investment. Most common: 100-500 (203), 10-100 (177), 1000-5000 (101), lt10 (71), 500-1000 (67)." - changed
Input schema / properties / payment / descriptionPrevious value: -"Payment options. Most common: bank-transfer (349), direct-debit (149), credit-card (147), cryptocurrency (18), paypal (9)."New value: +"Payment options. Most common: bank-transfer (348), direct-debit (148), credit-card (147), cryptocurrency (18), paypal (9)." - changed
Input schema / properties / region / descriptionPrevious value: -"Region. Most common: europe (462), north-america (87), mena (63), southeast-asia (53), latin-america (31)."New value: +"Region. Most common: europe (462), north-america (86), mena (63), southeast-asia (53), latin-america (31)." - changed
Input schema / properties / registration / items / enumPrevious value: -[ - "ao", - "ar", - "au", - "at", - "be", - "bo", - "bg", - "br", - "ca", - "co", - "hr", - "cy", - "cz", - "dk", - "ee", - "fi", - "fr", - "de", - "gr", - "hu", - "in", - "id", - "ie", - "il", - "it", - "ke", - "lv", - "lt", - "lu", - "my", - "mt", - "mu", - "mx", - "md", - "nl", - "nz", - "ng", - "no", - "pe", - "pl", - "pt", - "ro", - "th", - "tr", - "sa", - "sg", - "sk", - "es", - "za", - "se", - "ch", - "ae", - "gb", - "us" -]New value: +[ + "ao", + "ar", + "au", + "at", + "be", + "bo", + "bg", + "br", + "ca", + "co", + "hr", + "cy", + "cz", + "dk", + "ee", + "fi", + "fr", + "de", + "gr", + "gn", + "hu", + "in", + "id", + "ie", + "il", + "it", + "ke", + "lv", + "lt", + "lu", + "my", + "mt", + "mu", + "mx", + "md", + "nl", + "nz", + "ng", + "no", + "pe", + "pl", + "pt", + "ro", + "th", + "tr", + "sa", + "sg", + "sk", + "es", + "za", + "se", + "ch", + "ae", + "gb", + "us" +] - changed
Input schema / properties / regulated / descriptionPrevious value: -"Regulated. Most common: yes (549), regulated-no (153)."New value: +"Regulated. Most common: yes (548), regulated-no (153)." - changed
Input schema / properties / return / descriptionPrevious value: -"Advertised return. Most common: 10-15 (203), 5-10 (150), 15-20 (65), lt5 (37), gt20 (28)."New value: +"Advertised return. Most common: 10-15 (202), 5-10 (150), 15-20 (65), lt5 (37), gt20 (28)." - changed
Input schema / properties / secondary / descriptionPrevious value: -"Secondary market. Most common: secondary-no (586), yes (116)."New value: +"Secondary market. Most common: secondary-no (585), yes (116)." - changed
Input schema / properties / type / descriptionPrevious value: -"Investment type. Most common: equity (288), p2p-lending (272), debt (250), tokenized (35), mini-bonds (16)."New value: +"Investment type. Most common: equity (287), p2p-lending (273), debt (249), tokenized (35), mini-bonds (16)." - changed
Input schema / properties / years / descriptionPrevious value: -"Years on market. Most common: 3 (571), 2 (76), 1 (41), 0 (3)."New value: +"Years on market. Most common: 3 (570), 2 (75), 1 (42), 0 (3)."
4 tool updates
- Changed
get_industry_news1 field changed- added
Input schema / properties / category / enumAdded value: +[ + "fundraiser-tips", + "investor-insights", + "market-data", + "platform-update", + "regulation", + "success-story", + "tools-tech", + "trends", + "campaign-news" +]
- Changed
get_market_overview7 fields changed- changed
Input schema / additionalPropertiesPrevious value: -trueNew value: +false - added
Input schema / properties / countryAdded value: +{ + "description": "Country of operation. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom, es for Spain. Most common: fr (117), de (98), es (90), nl (88), it (84).", + "items": { + "enum": [ + "ad", + "ao", + "al", + "ar", + "au", + "at", + "be", + "bo", + "ba", + "bg", + "br", + "ca", + "co", + "hr", + "cy", + "cz", + "dk", + "ee", + "fi", + "fr", + "de", + "gr", + "hu", + "is", + "in", + "id", + "ie", + "il", + "it", + "ke", + "lv", + "li", + "lt", + "lu", + "mk", + "my", + "mt", + "mu", + "mx", + "md", + "mc", + "nl", + "nz", + "ng", + "no", + "pa", + "pe", + "pl", + "pt", + "ro", + "th", + "tr", + "sa", + "rs", + "sg", + "sk", + "si", + "es", + "za", + "se", + "ch", + "ae", + "gb", + "ua", + "us" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / industryAdded value: +{ + "description": "Industry. Most common: sme (324), real-estate (295), startups (151), green-energy (81), personal-loans (65).", + "items": { + "enum": [ + "real-estate", + "startups", + "sme", + "sustainability", + "litigation", + "green-energy", + "health-science", + "logistics", + "personal-loans", + "corporate-bonds", + "art", + "mortgages", + "social-cause", + "education", + "farming", + "sport", + "maritime" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / langAdded value: +{ + "description": "Language of the returned titles and profile URLs.", + "enum": [ + "en", + "de", + "fr" + ], + "type": "string" +} - added
Input schema / properties / listingAdded value: +{ + "default": "investment", + "description": "investment (default) — platforms you invest through; fundraising — donation and reward platforms. The two have different filters.", + "enum": [ + "investment", + "fundraising" + ], + "type": "string" +} - added
Input schema / properties / regionAdded value: +{ + "description": "Region. Most common: europe (462), north-america (87), mena (63), southeast-asia (53), latin-america (31).", + "items": { + "enum": [ + "europe", + "north-america", + "latin-america", + "africa", + "mena", + "southeast-asia", + "south-asia", + "oceania" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / typeAdded value: +{ + "description": "Investment type. Most common: equity (288), p2p-lending (272), debt (250), tokenized (35), mini-bonds (16).", + "items": { + "enum": [ + "equity", + "debt", + "p2p-lending", + "reward", + "tokenized", + "donation", + "buy-to-let", + "mini-bonds" + ], + "type": "string" + }, + "type": "array" +}
- Changed
get_regulatory_map3 fields changed- changed
Input schema / additionalPropertiesPrevious value: -trueNew value: +false - added
Input schema / properties / countryAdded value: +{ + "description": "Country, matched on country of registration. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom, es for Spain. Omit for every country at once.", + "enum": [ + "ad", + "ao", + "al", + "ar", + "au", + "at", + "be", + "bo", + "ba", + "bg", + "br", + "ca", + "co", + "hr", + "cy", + "cz", + "dk", + "ee", + "fi", + "fr", + "de", + "gr", + "hu", + "is", + "in", + "id", + "ie", + "il", + "it", + "ke", + "lv", + "li", + "lt", + "lu", + "mk", + "my", + "mt", + "mu", + "mx", + "md", + "mc", + "nl", + "nz", + "ng", + "no", + "pa", + "pe", + "pl", + "pt", + "ro", + "th", + "tr", + "sa", + "rs", + "sg", + "sk", + "si", + "es", + "za", + "se", + "ch", + "ae", + "gb", + "ua", + "us" + ], + "type": "string" +} - added
Input schema / properties / langAdded value: +{ + "description": "Language of the names returned.", + "enum": [ + "en", + "de", + "fr" + ], + "type": "string" +}
- Changed
search_platforms24 fields changed- changed
Input schema / additionalPropertiesPrevious value: -trueNew value: +false - added
Input schema / properties / autoinvestAdded value: +{ + "description": "Auto-invest. Most common: autoinvest-no (643), yes (59).", + "enum": [ + "yes", + "autoinvest-no" + ], + "type": "string" +} - added
Input schema / properties / bonusAdded value: +{ + "description": "Has a bonus. Most common: bonus-no (679), yes (23).", + "enum": [ + "yes", + "bonus-no" + ], + "type": "string" +} - added
Input schema / properties / buybackAdded value: +{ + "description": "Buyback guarantee. Most common: buyback-no (682), yes (20).", + "enum": [ + "yes", + "buyback-no" + ], + "type": "string" +} - added
Input schema / properties / countryAdded value: +{ + "description": "Country of operation. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom, es for Spain. Most common: fr (117), de (98), es (90), nl (88), it (84).", + "items": { + "enum": [ + "ad", + "ao", + "al", + "ar", + "au", + "at", + "be", + "bo", + "ba", + "bg", + "br", + "ca", + "co", + "hr", + "cy", + "cz", + "dk", + "ee", + "fi", + "fr", + "de", + "gr", + "hu", + "is", + "in", + "id", + "ie", + "il", + "it", + "ke", + "lv", + "li", + "lt", + "lu", + "mk", + "my", + "mt", + "mu", + "mx", + "md", + "mc", + "nl", + "nz", + "ng", + "no", + "pa", + "pe", + "pl", + "pt", + "ro", + "th", + "tr", + "sa", + "rs", + "sg", + "sk", + "si", + "es", + "za", + "se", + "ch", + "ae", + "gb", + "ua", + "us" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / currencyAdded value: +{ + "description": "Currency. Most common: eur (376), usd (120), gbp (44), mxn (22), brl (16).", + "items": { + "enum": [ + "aed", + "ars", + "aud", + "bob", + "brl", + "cad", + "cop", + "czk", + "dkk", + "eur", + "gbp", + "idr", + "ils", + "inr", + "kes", + "mur", + "mxn", + "myr", + "ngn", + "nzd", + "pes", + "pln", + "ron", + "sek", + "sgd", + "thb", + "try", + "usd", + "usdt", + "zar" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / durationAdded value: +{ + "description": "Average loan duration. Most common: gt18 (78), 12-18 (36), 6-12 (19), lt6 (8).", + "items": { + "enum": [ + "lt6", + "6-12", + "12-18", + "gt18" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / headquarterAdded value: +{ + "description": "Country of headquarters. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom. Most common: gb (64), fr (63), us (47), es (40), de (39).", + "items": { + "enum": [ + "ao", + "ar", + "au", + "at", + "be", + "bo", + "bg", + "br", + "ca", + "co", + "hr", + "cy", + "cz", + "dk", + "ee", + "fi", + "fr", + "de", + "gr", + "hu", + "in", + "id", + "ie", + "il", + "it", + "ke", + "lv", + "lt", + "lu", + "my", + "mt", + "mu", + "mx", + "md", + "nl", + "nz", + "ng", + "no", + "pe", + "pl", + "pt", + "ro", + "th", + "tr", + "sa", + "sg", + "sk", + "es", + "za", + "se", + "ch", + "ae", + "gb", + "us" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / industryAdded value: +{ + "description": "Industry. Most common: sme (324), real-estate (295), startups (151), green-energy (81), personal-loans (65).", + "items": { + "enum": [ + "real-estate", + "startups", + "sme", + "sustainability", + "litigation", + "green-energy", + "health-science", + "logistics", + "personal-loans", + "corporate-bonds", + "art", + "mortgages", + "social-cause", + "education", + "farming", + "sport", + "maritime" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / langAdded value: +{ + "description": "Language of the returned titles and profile URLs.", + "enum": [ + "en", + "de", + "fr" + ], + "type": "string" +} - added
Input schema / properties / listingAdded value: +{ + "default": "investment", + "description": "investment (default) — platforms you invest through; fundraising — donation and reward platforms. The two have different filters.", + "enum": [ + "investment", + "fundraising" + ], + "type": "string" +} - added
Input schema / properties / min_investmentAdded value: +{ + "description": "Minimum investment. Most common: 100-500 (204), 10-100 (176), 1000-5000 (101), lt10 (71), 500-1000 (68).", + "items": { + "enum": [ + "lt10", + "10-100", + "100-500", + "500-1000", + "1000-5000", + "gt5000" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / pageAdded value: +{ + "description": "Page number, 1-based.", + "minimum": 1, + "type": "integer" +} - added
Input schema / properties / paymentAdded value: +{ + "description": "Payment options. Most common: bank-transfer (349), direct-debit (149), credit-card (147), cryptocurrency (18), paypal (9).", + "items": { + "enum": [ + "bank-transfer", + "credit-card", + "cryptocurrency", + "direct-debit", + "paypal", + "paysera" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / per_pageAdded value: +{ + "description": "Results per call, 1-25. Default 20. Narrow the filters rather than asking for more — a wide page spends context on rows nobody reads.", + "maximum": 25, + "minimum": 1, + "type": "integer" +} - added
Input schema / properties / regionAdded value: +{ + "description": "Region. Most common: europe (462), north-america (87), mena (63), southeast-asia (53), latin-america (31).", + "items": { + "enum": [ + "europe", + "north-america", + "latin-america", + "africa", + "mena", + "southeast-asia", + "south-asia", + "oceania" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / registrationAdded value: +{ + "description": "Country of registration. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom. Most common: gb (63), fr (62), us (46), de (39), es (38).", + "items": { + "enum": [ + "ao", + "ar", + "au", + "at", + "be", + "bo", + "bg", + "br", + "ca", + "co", + "hr", + "cy", + "cz", + "dk", + "ee", + "fi", + "fr", + "de", + "gr", + "hu", + "in", + "id", + "ie", + "il", + "it", + "ke", + "lv", + "lt", + "lu", + "my", + "mt", + "mu", + "mx", + "md", + "nl", + "nz", + "ng", + "no", + "pe", + "pl", + "pt", + "ro", + "th", + "tr", + "sa", + "sg", + "sk", + "es", + "za", + "se", + "ch", + "ae", + "gb", + "us" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / regulatedAdded value: +{ + "description": "Regulated. Most common: yes (549), regulated-no (153).", + "enum": [ + "yes", + "regulated-no" + ], + "type": "string" +} - added
Input schema / properties / regulatorAdded value: +{ + "description": "Regulated by. The authority's own abbreviation, lowercase — fca, bafin, cnmv, amf. Most common: amf (53), sec (44), fca (43), finra (37), consob (32).", + "items": { + "enum": [ + "asf", + "nbs", + "mas", + "sama", + "cma", + "cmb", + "sec-thailand", + "cnmv", + "cmvm", + "knf", + "smv", + "finanstilsynet", + "fma-nz", + "cnpf", + "cnbv", + "fca", + "dfsa-uae", + "sro-polyreg", + "sro-vqf", + "afm", + "ihk", + "orias", + "finra", + "sec", + "fsc-mu", + "adgm", + "sca", + "finma", + "fi", + "ncr", + "fsca", + "csa", + "amf", + "fin-fsa", + "fsa", + "dfsa", + "cnb", + "cysec", + "sfc", + "bafin", + "bcb", + "cvm", + "fsc", + "fsma", + "fma", + "asic", + "bcra", + "consob", + "sc-malaysia", + "mfsa", + "cssf", + "bank-of-lithuania", + "latvijas-banka", + "cbk", + "cma-kenya", + "cnv", + "isa", + "ojk", + "rbi", + "sebi", + "central-bank-of-ireland", + "hcmc" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / returnAdded value: +{ + "description": "Advertised return. Most common: 10-15 (203), 5-10 (150), 15-20 (65), lt5 (37), gt20 (28).", + "items": { + "enum": [ + "lt5", + "5-10", + "10-15", + "15-20", + "gt20" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / secondaryAdded value: +{ + "description": "Secondary market. Most common: secondary-no (586), yes (116).", + "enum": [ + "yes", + "secondary-no" + ], + "type": "string" +} - added
Input schema / properties / sortAdded value: +{ + "description": "Ordering. Default recommended — the site's own editorial order.", + "enum": [ + "recommended", + "newest", + "oldest", + "min-investment-asc", + "min-investment-desc", + "return-desc", + "return-asc", + "duration-asc", + "duration-desc", + "years-desc", + "popular", + "investors-desc", + "funding-desc", + "name-asc", + "name-desc" + ], + "type": "string" +} - added
Input schema / properties / typeAdded value: +{ + "description": "Investment type. Most common: equity (288), p2p-lending (272), debt (250), tokenized (35), mini-bonds (16).", + "items": { + "enum": [ + "equity", + "debt", + "p2p-lending", + "reward", + "tokenized", + "donation", + "buy-to-let", + "mini-bonds" + ], + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / yearsAdded value: +{ + "description": "Years on market. Most common: 3 (571), 2 (76), 1 (41), 0 (3).", + "items": { + "enum": [ + "0", + "1", + "2", + "3" + ], + "type": "string" + }, + "type": "array" +}
4 tool updates
- Changed
get_industry_news1 field changed- removed
Input schema / properties / category / enumRemoved value: -[ - "fundraiser-tips", - "investor-insights", - "market-data", - "platform-update", - "regulation", - "success-story", - "tools-tech", - "trends", - "campaign-news" -]
- Changed
get_market_overview7 fields changed- changed
Input schema / additionalPropertiesPrevious value: -falseNew value: +true - removed
Input schema / properties / countryRemoved value: -{ - "description": "Country of operation. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom, es for Spain. Most common: fr (117), de (98), es (90), nl (88), it (84).", - "items": { - "enum": [ - "ad", - "ao", - "al", - "ar", - "au", - "at", - "be", - "bo", - "ba", - "bg", - "br", - "ca", - "co", - "hr", - "cy", - "cz", - "dk", - "ee", - "fi", - "fr", - "de", - "gr", - "hu", - "is", - "in", - "id", - "ie", - "il", - "it", - "ke", - "lv", - "li", - "lt", - "lu", - "mk", - "my", - "mt", - "mu", - "mx", - "md", - "mc", - "nl", - "nz", - "ng", - "no", - "pa", - "pe", - "pl", - "pt", - "ro", - "th", - "tr", - "sa", - "rs", - "sg", - "sk", - "si", - "es", - "za", - "se", - "ch", - "ae", - "gb", - "ua", - "us" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / industryRemoved value: -{ - "description": "Industry. Most common: sme (324), real-estate (295), startups (151), green-energy (81), personal-loans (65).", - "items": { - "enum": [ - "real-estate", - "startups", - "sme", - "sustainability", - "litigation", - "green-energy", - "health-science", - "logistics", - "personal-loans", - "corporate-bonds", - "art", - "mortgages", - "social-cause", - "education", - "farming", - "sport", - "maritime" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / langRemoved value: -{ - "description": "Language of the returned titles and profile URLs.", - "enum": [ - "en", - "de", - "fr" - ], - "type": "string" -} - removed
Input schema / properties / listingRemoved value: -{ - "default": "investment", - "description": "investment (default) — platforms you invest through; fundraising — donation and reward platforms. The two have different filters.", - "enum": [ - "investment", - "fundraising" - ], - "type": "string" -} - removed
Input schema / properties / regionRemoved value: -{ - "description": "Region. Most common: europe (462), north-america (87), mena (63), southeast-asia (53), latin-america (31).", - "items": { - "enum": [ - "europe", - "north-america", - "latin-america", - "africa", - "mena", - "southeast-asia", - "south-asia", - "oceania" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / typeRemoved value: -{ - "description": "Investment type. Most common: equity (288), p2p-lending (272), debt (250), tokenized (35), mini-bonds (16).", - "items": { - "enum": [ - "equity", - "debt", - "p2p-lending", - "reward", - "tokenized", - "donation", - "buy-to-let", - "mini-bonds" - ], - "type": "string" - }, - "type": "array" -}
- Changed
get_regulatory_map3 fields changed- changed
Input schema / additionalPropertiesPrevious value: -falseNew value: +true - removed
Input schema / properties / countryRemoved value: -{ - "description": "Country, matched on country of registration. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom, es for Spain. Omit for every country at once.", - "enum": [ - "ad", - "ao", - "al", - "ar", - "au", - "at", - "be", - "bo", - "ba", - "bg", - "br", - "ca", - "co", - "hr", - "cy", - "cz", - "dk", - "ee", - "fi", - "fr", - "de", - "gr", - "hu", - "is", - "in", - "id", - "ie", - "il", - "it", - "ke", - "lv", - "li", - "lt", - "lu", - "mk", - "my", - "mt", - "mu", - "mx", - "md", - "mc", - "nl", - "nz", - "ng", - "no", - "pa", - "pe", - "pl", - "pt", - "ro", - "th", - "tr", - "sa", - "rs", - "sg", - "sk", - "si", - "es", - "za", - "se", - "ch", - "ae", - "gb", - "ua", - "us" - ], - "type": "string" -} - removed
Input schema / properties / langRemoved value: -{ - "description": "Language of the names returned.", - "enum": [ - "en", - "de", - "fr" - ], - "type": "string" -}
- Changed
search_platforms24 fields changed- changed
Input schema / additionalPropertiesPrevious value: -falseNew value: +true - removed
Input schema / properties / autoinvestRemoved value: -{ - "description": "Auto-invest. Most common: autoinvest-no (643), yes (59).", - "enum": [ - "yes", - "autoinvest-no" - ], - "type": "string" -} - removed
Input schema / properties / bonusRemoved value: -{ - "description": "Has a bonus. Most common: bonus-no (679), yes (23).", - "enum": [ - "yes", - "bonus-no" - ], - "type": "string" -} - removed
Input schema / properties / buybackRemoved value: -{ - "description": "Buyback guarantee. Most common: buyback-no (682), yes (20).", - "enum": [ - "yes", - "buyback-no" - ], - "type": "string" -} - removed
Input schema / properties / countryRemoved value: -{ - "description": "Country of operation. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom, es for Spain. Most common: fr (117), de (98), es (90), nl (88), it (84).", - "items": { - "enum": [ - "ad", - "ao", - "al", - "ar", - "au", - "at", - "be", - "bo", - "ba", - "bg", - "br", - "ca", - "co", - "hr", - "cy", - "cz", - "dk", - "ee", - "fi", - "fr", - "de", - "gr", - "hu", - "is", - "in", - "id", - "ie", - "il", - "it", - "ke", - "lv", - "li", - "lt", - "lu", - "mk", - "my", - "mt", - "mu", - "mx", - "md", - "mc", - "nl", - "nz", - "ng", - "no", - "pa", - "pe", - "pl", - "pt", - "ro", - "th", - "tr", - "sa", - "rs", - "sg", - "sk", - "si", - "es", - "za", - "se", - "ch", - "ae", - "gb", - "ua", - "us" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / currencyRemoved value: -{ - "description": "Currency. Most common: eur (376), usd (120), gbp (44), mxn (22), brl (16).", - "items": { - "enum": [ - "aed", - "ars", - "aud", - "bob", - "brl", - "cad", - "cop", - "czk", - "dkk", - "eur", - "gbp", - "idr", - "ils", - "inr", - "kes", - "mur", - "mxn", - "myr", - "ngn", - "nzd", - "pes", - "pln", - "ron", - "sek", - "sgd", - "thb", - "try", - "usd", - "usdt", - "zar" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / durationRemoved value: -{ - "description": "Average loan duration. Most common: gt18 (78), 12-18 (36), 6-12 (19), lt6 (8).", - "items": { - "enum": [ - "lt6", - "6-12", - "12-18", - "gt18" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / headquarterRemoved value: -{ - "description": "Country of headquarters. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom. Most common: gb (64), fr (63), us (47), es (40), de (39).", - "items": { - "enum": [ - "ao", - "ar", - "au", - "at", - "be", - "bo", - "bg", - "br", - "ca", - "co", - "hr", - "cy", - "cz", - "dk", - "ee", - "fi", - "fr", - "de", - "gr", - "hu", - "in", - "id", - "ie", - "il", - "it", - "ke", - "lv", - "lt", - "lu", - "my", - "mt", - "mu", - "mx", - "md", - "nl", - "nz", - "ng", - "no", - "pe", - "pl", - "pt", - "ro", - "th", - "tr", - "sa", - "sg", - "sk", - "es", - "za", - "se", - "ch", - "ae", - "gb", - "us" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / industryRemoved value: -{ - "description": "Industry. Most common: sme (324), real-estate (295), startups (151), green-energy (81), personal-loans (65).", - "items": { - "enum": [ - "real-estate", - "startups", - "sme", - "sustainability", - "litigation", - "green-energy", - "health-science", - "logistics", - "personal-loans", - "corporate-bonds", - "art", - "mortgages", - "social-cause", - "education", - "farming", - "sport", - "maritime" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / langRemoved value: -{ - "description": "Language of the returned titles and profile URLs.", - "enum": [ - "en", - "de", - "fr" - ], - "type": "string" -} - removed
Input schema / properties / listingRemoved value: -{ - "default": "investment", - "description": "investment (default) — platforms you invest through; fundraising — donation and reward platforms. The two have different filters.", - "enum": [ - "investment", - "fundraising" - ], - "type": "string" -} - removed
Input schema / properties / min_investmentRemoved value: -{ - "description": "Minimum investment. Most common: 100-500 (204), 10-100 (176), 1000-5000 (101), lt10 (71), 500-1000 (68).", - "items": { - "enum": [ - "lt10", - "10-100", - "100-500", - "500-1000", - "1000-5000", - "gt5000" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / pageRemoved value: -{ - "description": "Page number, 1-based.", - "minimum": 1, - "type": "integer" -} - removed
Input schema / properties / paymentRemoved value: -{ - "description": "Payment options. Most common: bank-transfer (349), direct-debit (149), credit-card (147), cryptocurrency (18), paypal (9).", - "items": { - "enum": [ - "bank-transfer", - "credit-card", - "cryptocurrency", - "direct-debit", - "paypal", - "paysera" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / per_pageRemoved value: -{ - "description": "Results per call, 1-25. Default 20. Narrow the filters rather than asking for more — a wide page spends context on rows nobody reads.", - "maximum": 25, - "minimum": 1, - "type": "integer" -} - removed
Input schema / properties / regionRemoved value: -{ - "description": "Region. Most common: europe (462), north-america (87), mena (63), southeast-asia (53), latin-america (31).", - "items": { - "enum": [ - "europe", - "north-america", - "latin-america", - "africa", - "mena", - "southeast-asia", - "south-asia", - "oceania" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / registrationRemoved value: -{ - "description": "Country of registration. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom. Most common: gb (63), fr (62), us (46), de (39), es (38).", - "items": { - "enum": [ - "ao", - "ar", - "au", - "at", - "be", - "bo", - "bg", - "br", - "ca", - "co", - "hr", - "cy", - "cz", - "dk", - "ee", - "fi", - "fr", - "de", - "gr", - "hu", - "in", - "id", - "ie", - "il", - "it", - "ke", - "lv", - "lt", - "lu", - "my", - "mt", - "mu", - "mx", - "md", - "nl", - "nz", - "ng", - "no", - "pe", - "pl", - "pt", - "ro", - "th", - "tr", - "sa", - "sg", - "sk", - "es", - "za", - "se", - "ch", - "ae", - "gb", - "us" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / regulatedRemoved value: -{ - "description": "Regulated. Most common: yes (549), regulated-no (153).", - "enum": [ - "yes", - "regulated-no" - ], - "type": "string" -} - removed
Input schema / properties / regulatorRemoved value: -{ - "description": "Regulated by. The authority's own abbreviation, lowercase — fca, bafin, cnmv, amf. Most common: amf (53), sec (44), fca (43), finra (37), consob (32).", - "items": { - "enum": [ - "asf", - "nbs", - "mas", - "sama", - "cma", - "cmb", - "sec-thailand", - "cnmv", - "cmvm", - "knf", - "smv", - "finanstilsynet", - "fma-nz", - "cnpf", - "cnbv", - "fca", - "dfsa-uae", - "sro-polyreg", - "sro-vqf", - "afm", - "ihk", - "orias", - "finra", - "sec", - "fsc-mu", - "adgm", - "sca", - "finma", - "fi", - "ncr", - "fsca", - "csa", - "amf", - "fin-fsa", - "fsa", - "dfsa", - "cnb", - "cysec", - "sfc", - "bafin", - "bcb", - "cvm", - "fsc", - "fsma", - "fma", - "asic", - "bcra", - "consob", - "sc-malaysia", - "mfsa", - "cssf", - "bank-of-lithuania", - "latvijas-banka", - "cbk", - "cma-kenya", - "cnv", - "isa", - "ojk", - "rbi", - "sebi", - "central-bank-of-ireland", - "hcmc" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / returnRemoved value: -{ - "description": "Advertised return. Most common: 10-15 (203), 5-10 (150), 15-20 (65), lt5 (37), gt20 (28).", - "items": { - "enum": [ - "lt5", - "5-10", - "10-15", - "15-20", - "gt20" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / secondaryRemoved value: -{ - "description": "Secondary market. Most common: secondary-no (586), yes (116).", - "enum": [ - "yes", - "secondary-no" - ], - "type": "string" -} - removed
Input schema / properties / sortRemoved value: -{ - "description": "Ordering. Default recommended — the site's own editorial order.", - "enum": [ - "recommended", - "newest", - "oldest", - "min-investment-asc", - "min-investment-desc", - "return-desc", - "return-asc", - "duration-asc", - "duration-desc", - "years-desc", - "popular", - "investors-desc", - "funding-desc", - "name-asc", - "name-desc" - ], - "type": "string" -} - removed
Input schema / properties / typeRemoved value: -{ - "description": "Investment type. Most common: equity (288), p2p-lending (272), debt (250), tokenized (35), mini-bonds (16).", - "items": { - "enum": [ - "equity", - "debt", - "p2p-lending", - "reward", - "tokenized", - "donation", - "buy-to-let", - "mini-bonds" - ], - "type": "string" - }, - "type": "array" -} - removed
Input schema / properties / yearsRemoved value: -{ - "description": "Years on market. Most common: 3 (571), 2 (76), 1 (41), 0 (3).", - "items": { - "enum": [ - "0", - "1", - "2", - "3" - ], - "type": "string" - }, - "type": "array" -}
1 tool update
- Changed
search_platforms1 field changed- changed
Input schema / properties / autoinvest / descriptionPrevious value: -"Auto-invest. Most common: autoinvest-no (644), yes (58)."New value: +"Auto-invest. Most common: autoinvest-no (643), yes (59)."
2 tool updates
- Changed
get_market_overview3 fields changed- changed
Input schema / properties / industry / descriptionPrevious value: -"Industry. Most common: sme (323), real-estate (295), startups (150), green-energy (80), personal-loans (65)."New value: +"Industry. Most common: sme (324), real-estate (295), startups (151), green-energy (81), personal-loans (65)." - changed
Input schema / properties / region / descriptionPrevious value: -"Region. Most common: europe (461), north-america (87), mena (63), southeast-asia (53), latin-america (31)."New value: +"Region. Most common: europe (462), north-america (87), mena (63), southeast-asia (53), latin-america (31)." - changed
Input schema / properties / type / descriptionPrevious value: -"Investment type. Most common: equity (287), p2p-lending (272), debt (249), tokenized (35), mini-bonds (16)."New value: +"Investment type. Most common: equity (288), p2p-lending (272), debt (250), tokenized (35), mini-bonds (16)."
- Changed
search_platforms14 fields changed- changed
Input schema / properties / autoinvest / descriptionPrevious value: -"Auto-invest. Most common: autoinvest-no (643), yes (58)."New value: +"Auto-invest. Most common: autoinvest-no (644), yes (58)." - changed
Input schema / properties / bonus / descriptionPrevious value: -"Has a bonus. Most common: bonus-no (678), yes (23)."New value: +"Has a bonus. Most common: bonus-no (679), yes (23)." - changed
Input schema / properties / buyback / descriptionPrevious value: -"Buyback guarantee. Most common: buyback-no (681), yes (20)."New value: +"Buyback guarantee. Most common: buyback-no (682), yes (20)." - changed
Input schema / properties / currency / descriptionPrevious value: -"Currency. Most common: eur (376), usd (119), gbp (44), mxn (22), brl (16)."New value: +"Currency. Most common: eur (376), usd (120), gbp (44), mxn (22), brl (16)." - changed
Input schema / properties / headquarter / descriptionPrevious value: -"Country of headquarters. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom. Most common: fr (63), gb (63), us (47), es (40), de (39)."New value: +"Country of headquarters. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom. Most common: gb (64), fr (63), us (47), es (40), de (39)." - changed
Input schema / properties / industry / descriptionPrevious value: -"Industry. Most common: sme (323), real-estate (295), startups (150), green-energy (80), personal-loans (65)."New value: +"Industry. Most common: sme (324), real-estate (295), startups (151), green-energy (81), personal-loans (65)." - changed
Input schema / properties / payment / descriptionPrevious value: -"Payment options. Most common: bank-transfer (348), direct-debit (148), credit-card (146), cryptocurrency (18), paypal (9)."New value: +"Payment options. Most common: bank-transfer (349), direct-debit (149), credit-card (147), cryptocurrency (18), paypal (9)." - changed
Input schema / properties / region / descriptionPrevious value: -"Region. Most common: europe (461), north-america (87), mena (63), southeast-asia (53), latin-america (31)."New value: +"Region. Most common: europe (462), north-america (87), mena (63), southeast-asia (53), latin-america (31)." - changed
Input schema / properties / registration / descriptionPrevious value: -"Country of registration. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom. Most common: fr (62), gb (62), us (46), de (39), es (38)."New value: +"Country of registration. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom. Most common: gb (63), fr (62), us (46), de (39), es (38)." - changed
Input schema / properties / regulated / descriptionPrevious value: -"Regulated. Most common: yes (549), regulated-no (152)."New value: +"Regulated. Most common: yes (549), regulated-no (153)." - changed
Input schema / properties / return / descriptionPrevious value: -"Advertised return. Most common: 10-15 (203), 5-10 (150), 15-20 (65), lt5 (36), gt20 (28)."New value: +"Advertised return. Most common: 10-15 (203), 5-10 (150), 15-20 (65), lt5 (37), gt20 (28)." - changed
Input schema / properties / secondary / descriptionPrevious value: -"Secondary market. Most common: secondary-no (585), yes (116)."New value: +"Secondary market. Most common: secondary-no (586), yes (116)." - changed
Input schema / properties / type / descriptionPrevious value: -"Investment type. Most common: equity (287), p2p-lending (272), debt (249), tokenized (35), mini-bonds (16)."New value: +"Investment type. Most common: equity (288), p2p-lending (272), debt (250), tokenized (35), mini-bonds (16)." - changed
Input schema / properties / years / descriptionPrevious value: -"Years on market. Most common: 3 (570), 2 (76), 1 (41), 0 (3)."New value: +"Years on market. Most common: 3 (571), 2 (76), 1 (41), 0 (3)."
3 tool updates
- Changed
get_market_overview4 fields changed- changed
Input schema / properties / country / descriptionPrevious value: -"Country of operation. Most common: ad (8), ao (1), al (7), ar (5), au (12)."New value: +"Country of operation. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom, es for Spain. Most common: fr (117), de (98), es (90), nl (88), it (84)." - changed
Input schema / properties / industry / descriptionPrevious value: -"Industry. Most common: real-estate (295), startups (150), sme (323), sustainability (60), litigation (3)."New value: +"Industry. Most common: sme (323), real-estate (295), startups (150), green-energy (80), personal-loans (65)." - changed
Input schema / properties / region / descriptionPrevious value: -"Region. Most common: europe (461), north-america (87), latin-america (31), africa (13), mena (63)."New value: +"Region. Most common: europe (461), north-america (87), mena (63), southeast-asia (53), latin-america (31)." - changed
Input schema / properties / type / descriptionPrevious value: -"Investment type. Most common: equity (287), debt (249), p2p-lending (272), reward (12), tokenized (35)."New value: +"Investment type. Most common: equity (287), p2p-lending (272), debt (249), tokenized (35), mini-bonds (16)."
- Changed
get_regulatory_map1 field changed- changed
Input schema / properties / country / descriptionPrevious value: -"Country slug, matched on country of registration. Omit for every country at once."New value: +"Country, matched on country of registration. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom, es for Spain. Omit for every country at once."
- Changed
search_platforms18 fields changed- changed
Input schema / properties / autoinvest / descriptionPrevious value: -"Auto-invest. 3 values; most common: yes (58), autoinvest-no (643)."New value: +"Auto-invest. Most common: autoinvest-no (643), yes (58)." - changed
Input schema / properties / bonus / descriptionPrevious value: -"Has a bonus. 3 values; most common: yes (23), bonus-no (678)."New value: +"Has a bonus. Most common: bonus-no (678), yes (23)." - changed
Input schema / properties / buyback / descriptionPrevious value: -"Buyback guarantee. 3 values; most common: yes (20), buyback-no (681)."New value: +"Buyback guarantee. Most common: buyback-no (681), yes (20)." - changed
Input schema / properties / country / descriptionPrevious value: -"Country of operation. Most common: ad (8), ao (1), al (7), ar (5), au (12)."New value: +"Country of operation. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom, es for Spain. Most common: fr (117), de (98), es (90), nl (88), it (84)." - changed
Input schema / properties / currency / descriptionPrevious value: -"Currency. Most common: aed (3), ars (1), aud (10), bob (1), brl (16)."New value: +"Currency. Most common: eur (376), usd (119), gbp (44), mxn (22), brl (16)." - changed
Input schema / properties / duration / descriptionPrevious value: -"Average loan duration. Most common: lt6 (8), 6-12 (19), 12-18 (36), gt18 (78)."New value: +"Average loan duration. Most common: gt18 (78), 12-18 (36), 6-12 (19), lt6 (8)." - changed
Input schema / properties / headquarter / descriptionPrevious value: -"Country of headquarters. Most common: ao (1), ar (3), au (10), at (11), be (12)."New value: +"Country of headquarters. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom. Most common: fr (63), gb (63), us (47), es (40), de (39)." - changed
Input schema / properties / industry / descriptionPrevious value: -"Industry. Most common: real-estate (295), startups (150), sme (323), sustainability (60), litigation (3)."New value: +"Industry. Most common: sme (323), real-estate (295), startups (150), green-energy (80), personal-loans (65)." - changed
Input schema / properties / min_investment / descriptionPrevious value: -"Minimum investment. Most common: lt10 (71), 10-100 (176), 100-500 (204), 500-1000 (68), 1000-5000 (101)."New value: +"Minimum investment. Most common: 100-500 (204), 10-100 (176), 1000-5000 (101), lt10 (71), 500-1000 (68)." - changed
Input schema / properties / payment / descriptionPrevious value: -"Payment options. Most common: bank-transfer (348), credit-card (146), cryptocurrency (18), direct-debit (148), paypal (9)."New value: +"Payment options. Most common: bank-transfer (348), direct-debit (148), credit-card (146), cryptocurrency (18), paypal (9)." - changed
Input schema / properties / region / descriptionPrevious value: -"Region. Most common: europe (461), north-america (87), latin-america (31), africa (13), mena (63)."New value: +"Region. Most common: europe (461), north-america (87), mena (63), southeast-asia (53), latin-america (31)." - changed
Input schema / properties / registration / descriptionPrevious value: -"Country of registration. Most common: ao (1), ar (4), au (10), at (11), be (13)."New value: +"Country of registration. ISO 3166-1 alpha-2 codes, lowercase — de for Germany, gb for the United Kingdom. Most common: fr (62), gb (62), us (46), de (39), es (38)." - changed
Input schema / properties / regulated / descriptionPrevious value: -"Regulated. 3 values; most common: yes (549), regulated-no (152)."New value: +"Regulated. Most common: yes (549), regulated-no (152)." - changed
Input schema / properties / regulator / descriptionPrevious value: -"Regulated by. Most common: asf (5), nbs (6), mas (9), sama (8), cma (12)."New value: +"Regulated by. The authority's own abbreviation, lowercase — fca, bafin, cnmv, amf. Most common: amf (53), sec (44), fca (43), finra (37), consob (32)." - changed
Input schema / properties / return / descriptionPrevious value: -"Advertised return. Most common: lt5 (36), 5-10 (150), 10-15 (203), 15-20 (65), gt20 (28)."New value: +"Advertised return. Most common: 10-15 (203), 5-10 (150), 15-20 (65), lt5 (36), gt20 (28)." - changed
Input schema / properties / secondary / descriptionPrevious value: -"Secondary market. 3 values; most common: yes (116), secondary-no (585)."New value: +"Secondary market. Most common: secondary-no (585), yes (116)." - changed
Input schema / properties / type / descriptionPrevious value: -"Investment type. Most common: equity (287), debt (249), p2p-lending (272), reward (12), tokenized (35)."New value: +"Investment type. Most common: equity (287), p2p-lending (272), debt (249), tokenized (35), mini-bonds (16)." - changed
Input schema / properties / years / descriptionPrevious value: -"Years on market. Most common: 0 (3), 1 (41), 2 (76), 3 (570)."New value: +"Years on market. Most common: 3 (570), 2 (76), 1 (41), 0 (3)."
1 tool update
- Changed
search_platforms3 fields changed- changed
Input schema / properties / buyback / descriptionPrevious value: -"Buyback guarantee. 3 values; most common: yes (19), buyback-no (682)."New value: +"Buyback guarantee. 3 values; most common: yes (20), buyback-no (681)." - changed
Input schema / properties / duration / descriptionPrevious value: -"Average loan duration. Most common: lt6 (8), 6-12 (19), 12-18 (36), gt18 (77)."New value: +"Average loan duration. Most common: lt6 (8), 6-12 (19), 12-18 (36), gt18 (78)." - changed
Input schema / properties / payment / descriptionPrevious value: -"Payment options. Most common: bank-transfer (348), credit-card (147), cryptocurrency (18), direct-debit (149), paypal (9)."New value: +"Payment options. Most common: bank-transfer (348), credit-card (146), cryptocurrency (18), direct-debit (148), paypal (9)."
2 tool updates
- Changed
get_market_overview3 fields changed- changed
Input schema / properties / industry / descriptionPrevious value: -"Industry. Most common: real-estate (295), startups (151), sme (323), sustainability (60), litigation (3)."New value: +"Industry. Most common: real-estate (295), startups (150), sme (323), sustainability (60), litigation (3)." - changed
Input schema / properties / region / descriptionPrevious value: -"Region. Most common: europe (462), north-america (87), latin-america (31), africa (13), mena (63)."New value: +"Region. Most common: europe (461), north-america (87), latin-america (31), africa (13), mena (63)." - changed
Input schema / properties / type / descriptionPrevious value: -"Investment type. Most common: equity (288), debt (249), p2p-lending (273), reward (12), tokenized (35)."New value: +"Investment type. Most common: equity (287), debt (249), p2p-lending (272), reward (12), tokenized (35)."
- Changed
search_platforms11 fields changed- changed
Input schema / properties / autoinvest / descriptionPrevious value: -"Auto-invest. 3 values; most common: yes (58), autoinvest-no (644)."New value: +"Auto-invest. 3 values; most common: yes (58), autoinvest-no (643)." - changed
Input schema / properties / bonus / descriptionPrevious value: -"Has a bonus. 3 values; most common: yes (23), bonus-no (679)."New value: +"Has a bonus. 3 values; most common: yes (23), bonus-no (678)." - changed
Input schema / properties / buyback / descriptionPrevious value: -"Buyback guarantee. 3 values; most common: yes (19), buyback-no (683)."New value: +"Buyback guarantee. 3 values; most common: yes (19), buyback-no (682)." - changed
Input schema / properties / duration / descriptionPrevious value: -"Average loan duration. Most common: lt6 (8), 6-12 (19), 12-18 (36), gt18 (78)."New value: +"Average loan duration. Most common: lt6 (8), 6-12 (19), 12-18 (36), gt18 (77)." - changed
Input schema / properties / industry / descriptionPrevious value: -"Industry. Most common: real-estate (295), startups (151), sme (323), sustainability (60), litigation (3)."New value: +"Industry. Most common: real-estate (295), startups (150), sme (323), sustainability (60), litigation (3)." - changed
Input schema / properties / payment / descriptionPrevious value: -"Payment options. Most common: bank-transfer (349), credit-card (148), cryptocurrency (18), direct-debit (150), paypal (10)."New value: +"Payment options. Most common: bank-transfer (348), credit-card (147), cryptocurrency (18), direct-debit (149), paypal (9)." - changed
Input schema / properties / region / descriptionPrevious value: -"Region. Most common: europe (462), north-america (87), latin-america (31), africa (13), mena (63)."New value: +"Region. Most common: europe (461), north-america (87), latin-america (31), africa (13), mena (63)." - changed
Input schema / properties / regulated / descriptionPrevious value: -"Regulated. 3 values; most common: yes (549), regulated-no (153)."New value: +"Regulated. 3 values; most common: yes (549), regulated-no (152)." - changed
Input schema / properties / return / descriptionPrevious value: -"Advertised return. Most common: lt5 (36), 5-10 (150), 10-15 (203), 15-20 (65), gt20 (29)."New value: +"Advertised return. Most common: lt5 (36), 5-10 (150), 10-15 (203), 15-20 (65), gt20 (28)." - changed
Input schema / properties / secondary / descriptionPrevious value: -"Secondary market. 3 values; most common: yes (116), secondary-no (586)."New value: +"Secondary market. 3 values; most common: yes (116), secondary-no (585)." - changed
Input schema / properties / type / descriptionPrevious value: -"Investment type. Most common: equity (288), debt (249), p2p-lending (273), reward (12), tokenized (35)."New value: +"Investment type. Most common: equity (287), debt (249), p2p-lending (272), reward (12), tokenized (35)."
2 tool updates
- Changed
get_market_overview3 fields changed- changed
Input schema / properties / industry / descriptionPrevious value: -"Industry. Most common: real-estate (295), startups (151), sme (324), sustainability (60), litigation (3)."New value: +"Industry. Most common: real-estate (295), startups (151), sme (323), sustainability (60), litigation (3)." - changed
Input schema / properties / region / descriptionPrevious value: -"Region. Most common: europe (463), north-america (87), latin-america (31), africa (13), mena (63)."New value: +"Region. Most common: europe (462), north-america (87), latin-america (31), africa (13), mena (63)." - changed
Input schema / properties / type / descriptionPrevious value: -"Investment type. Most common: equity (288), debt (249), p2p-lending (274), reward (12), tokenized (35)."New value: +"Investment type. Most common: equity (288), debt (249), p2p-lending (273), reward (12), tokenized (35)."
- Changed
search_platforms10 fields changed- changed
Input schema / properties / autoinvest / descriptionPrevious value: -"Auto-invest. 3 values; most common: yes (58), autoinvest-no (645)."New value: +"Auto-invest. 3 values; most common: yes (58), autoinvest-no (644)." - changed
Input schema / properties / bonus / descriptionPrevious value: -"Has a bonus. 3 values; most common: yes (23), bonus-no (680)."New value: +"Has a bonus. 3 values; most common: yes (23), bonus-no (679)." - changed
Input schema / properties / buyback / descriptionPrevious value: -"Buyback guarantee. 3 values; most common: yes (19), buyback-no (684)."New value: +"Buyback guarantee. 3 values; most common: yes (19), buyback-no (683)." - changed
Input schema / properties / industry / descriptionPrevious value: -"Industry. Most common: real-estate (295), startups (151), sme (324), sustainability (60), litigation (3)."New value: +"Industry. Most common: real-estate (295), startups (151), sme (323), sustainability (60), litigation (3)." - changed
Input schema / properties / min_investment / descriptionPrevious value: -"Minimum investment. Most common: lt10 (71), 10-100 (176), 100-500 (205), 500-1000 (68), 1000-5000 (101)."New value: +"Minimum investment. Most common: lt10 (71), 10-100 (176), 100-500 (204), 500-1000 (68), 1000-5000 (101)." - changed
Input schema / properties / region / descriptionPrevious value: -"Region. Most common: europe (463), north-america (87), latin-america (31), africa (13), mena (63)."New value: +"Region. Most common: europe (462), north-america (87), latin-america (31), africa (13), mena (63)." - changed
Input schema / properties / regulated / descriptionPrevious value: -"Regulated. 3 values; most common: yes (550), regulated-no (153)."New value: +"Regulated. 3 values; most common: yes (549), regulated-no (153)." - changed
Input schema / properties / secondary / descriptionPrevious value: -"Secondary market. 3 values; most common: yes (116), secondary-no (587)."New value: +"Secondary market. 3 values; most common: yes (116), secondary-no (586)." - changed
Input schema / properties / type / descriptionPrevious value: -"Investment type. Most common: equity (288), debt (249), p2p-lending (274), reward (12), tokenized (35)."New value: +"Investment type. Most common: equity (288), debt (249), p2p-lending (273), reward (12), tokenized (35)." - changed
Input schema / properties / years / descriptionPrevious value: -"Years on market. Most common: 0 (3), 1 (41), 2 (76), 3 (571)."New value: +"Years on market. Most common: 0 (3), 1 (41), 2 (76), 3 (570)."
1 tool update
- Changed
search_platforms1 field changed- changed
Input schema / properties / bonus / descriptionPrevious value: -"Has a bonus. 3 values; most common: yes (22), bonus-no (681)."New value: +"Has a bonus. 3 values; most common: yes (23), bonus-no (680)."
1 tool update
- Changed
get_industry_news1 field changed- changed
Input schema / properties / category / enumPrevious value: -[ - "investor-insights", - "market-data", - "platform-update", - "regulation", - "success-story", - "tools-tech", - "trends", - "campaign-news" -]New value: +[ + "fundraiser-tips", + "investor-insights", + "market-data", + "platform-update", + "regulation", + "success-story", + "tools-tech", + "trends", + "campaign-news" +]
2 tool updates
- Changed
get_market_overview1 field changed- changed
Input schema / properties / industry / descriptionPrevious value: -"Industry. Most common: real-estate (294), startups (151), sme (324), sustainability (60), litigation (3)."New value: +"Industry. Most common: real-estate (295), startups (151), sme (324), sustainability (60), litigation (3)."
- Changed
search_platforms5 fields changed- changed
Input schema / properties / autoinvest / descriptionPrevious value: -"Auto-invest. 3 values; most common: yes (57), autoinvest-no (646)."New value: +"Auto-invest. 3 values; most common: yes (58), autoinvest-no (645)." - changed
Input schema / properties / industry / descriptionPrevious value: -"Industry. Most common: real-estate (294), startups (151), sme (324), sustainability (60), litigation (3)."New value: +"Industry. Most common: real-estate (295), startups (151), sme (324), sustainability (60), litigation (3)." - changed
Input schema / properties / min_investment / descriptionPrevious value: -"Minimum investment. Most common: lt10 (71), 10-100 (175), 100-500 (206), 500-1000 (68), 1000-5000 (101)."New value: +"Minimum investment. Most common: lt10 (71), 10-100 (176), 100-500 (205), 500-1000 (68), 1000-5000 (101)." - changed
Input schema / properties / payment / descriptionPrevious value: -"Payment options. Most common: bank-transfer (350), credit-card (149), cryptocurrency (18), direct-debit (150), paypal (10)."New value: +"Payment options. Most common: bank-transfer (349), credit-card (148), cryptocurrency (18), direct-debit (150), paypal (10)." - changed
Input schema / properties / payment / items / enumPrevious value: -[ - "bank-transfer", - "credit-card", - "cryptocurrency", - "direct-debit", - "paypal" -]New value: +[ + "bank-transfer", + "credit-card", + "cryptocurrency", + "direct-debit", + "paypal", + "paysera" +]
1 tool update
- Changed
search_platforms6 fields changed- changed
Input schema / properties / autoinvest / descriptionPrevious value: -"Auto-invest. 3 values; most common: yes (56), autoinvest-no (647)."New value: +"Auto-invest. 3 values; most common: yes (57), autoinvest-no (646)." - changed
Input schema / properties / duration / descriptionPrevious value: -"Average loan duration. Most common: lt6 (8), 6-12 (19), 12-18 (35), gt18 (78)."New value: +"Average loan duration. Most common: lt6 (8), 6-12 (19), 12-18 (36), gt18 (78)." - changed
Input schema / properties / payment / descriptionPrevious value: -"Payment options. Most common: bank-transfer (349), credit-card (148), cryptocurrency (18), direct-debit (150), paypal (10)."New value: +"Payment options. Most common: bank-transfer (350), credit-card (149), cryptocurrency (18), direct-debit (150), paypal (10)." - changed
Input schema / properties / regulated / descriptionPrevious value: -"Regulated. 3 values; most common: yes (551), regulated-no (152)."New value: +"Regulated. 3 values; most common: yes (550), regulated-no (153)." - changed
Input schema / properties / return / descriptionPrevious value: -"Advertised return. Most common: lt5 (36), 5-10 (150), 10-15 (202), 15-20 (65), gt20 (29)."New value: +"Advertised return. Most common: lt5 (36), 5-10 (150), 10-15 (203), 15-20 (65), gt20 (29)." - changed
Input schema / properties / secondary / descriptionPrevious value: -"Secondary market. 3 values; most common: yes (115), secondary-no (588)."New value: +"Secondary market. 3 values; most common: yes (116), secondary-no (587)."
1 tool update
- Changed
search_platforms1 field changed- changed
Input schema / properties / secondary / descriptionPrevious value: -"Secondary market. 3 values; most common: yes (114), secondary-no (589)."New value: +"Secondary market. 3 values; most common: yes (115), secondary-no (588)."
2 tool updates
- Changed
get_market_overview2 fields changed- changed
Input schema / properties / region / descriptionPrevious value: -"Region. Most common: europe (462), north-america (87), latin-america (31), africa (13), mena (63)."New value: +"Region. Most common: europe (463), north-america (87), latin-america (31), africa (13), mena (63)." - changed
Input schema / properties / type / descriptionPrevious value: -"Investment type. Most common: equity (288), debt (249), p2p-lending (273), reward (12), tokenized (35)."New value: +"Investment type. Most common: equity (288), debt (249), p2p-lending (274), reward (12), tokenized (35)."
- Changed
search_platforms11 fields changed- changed
Input schema / properties / autoinvest / descriptionPrevious value: -"Auto-invest. 3 values; most common: yes (56), autoinvest-no (646)."New value: +"Auto-invest. 3 values; most common: yes (56), autoinvest-no (647)." - changed
Input schema / properties / bonus / descriptionPrevious value: -"Has a bonus. 3 values; most common: yes (22), bonus-no (680)."New value: +"Has a bonus. 3 values; most common: yes (22), bonus-no (681)." - changed
Input schema / properties / buyback / descriptionPrevious value: -"Buyback guarantee. 3 values; most common: yes (19), buyback-no (683)."New value: +"Buyback guarantee. 3 values; most common: yes (19), buyback-no (684)." - changed
Input schema / properties / min_investment / descriptionPrevious value: -"Minimum investment. Most common: lt10 (71), 10-100 (175), 100-500 (205), 500-1000 (68), 1000-5000 (101)."New value: +"Minimum investment. Most common: lt10 (71), 10-100 (175), 100-500 (206), 500-1000 (68), 1000-5000 (101)." - changed
Input schema / properties / payment / descriptionPrevious value: -"Payment options. Most common: bank-transfer (348), credit-card (147), cryptocurrency (18), direct-debit (150), paypal (10)."New value: +"Payment options. Most common: bank-transfer (349), credit-card (148), cryptocurrency (18), direct-debit (150), paypal (10)." - changed
Input schema / properties / region / descriptionPrevious value: -"Region. Most common: europe (462), north-america (87), latin-america (31), africa (13), mena (63)."New value: +"Region. Most common: europe (463), north-america (87), latin-america (31), africa (13), mena (63)." - changed
Input schema / properties / regulated / descriptionPrevious value: -"Regulated. 3 values; most common: yes (551), regulated-no (151)."New value: +"Regulated. 3 values; most common: yes (551), regulated-no (152)." - changed
Input schema / properties / return / descriptionPrevious value: -"Advertised return. Most common: lt5 (36), 5-10 (150), 10-15 (201), 15-20 (65), gt20 (29)."New value: +"Advertised return. Most common: lt5 (36), 5-10 (150), 10-15 (202), 15-20 (65), gt20 (29)." - changed
Input schema / properties / secondary / descriptionPrevious value: -"Secondary market. 3 values; most common: yes (114), secondary-no (588)."New value: +"Secondary market. 3 values; most common: yes (114), secondary-no (589)." - changed
Input schema / properties / type / descriptionPrevious value: -"Investment type. Most common: equity (288), debt (249), p2p-lending (273), reward (12), tokenized (35)."New value: +"Investment type. Most common: equity (288), debt (249), p2p-lending (274), reward (12), tokenized (35)." - changed
Input schema / properties / years / descriptionPrevious value: -"Years on market. Most common: 0 (2), 1 (41), 2 (76), 3 (571)."New value: +"Years on market. Most common: 0 (3), 1 (41), 2 (76), 3 (571)."
1 tool update
- Changed
get_regulatory_map3 fields changed- changed
Input schema / properties / country / descriptionPrevious value: -"Country slug. Omit for every country at once."New value: +"Country slug, matched on country of registration. Omit for every country at once." - removed
Output schema / properties / countries / items / properties / platforms / properties / coveringRemoved value: -{ - "type": "integer" -} - added
Output schema / properties / countries / items / properties / platforms / properties / registeredAdded value: +{ + "type": "integer" +}
4 tool updates
- Changed
get_industry_news3 fields changed- changed
Input schema / properties / per_page / descriptionPrevious value: -"Items per page, 1-100. Default 20."New value: +"Items per call, 1-25. Default 20." - changed
Input schema / properties / per_page / maximumPrevious value: -100New value: +25 - added
Output schema / properties / meta / properties / total_activeAdded value: +{ + "description": "How many of the matches are still operating — the number the aggregate tools count.", + "type": "integer" +}
- Changed
get_market_overview1 field changed- added
Output schema / properties / meta / properties / total_activeAdded value: +{ + "description": "How many of the matches are still operating — the number the aggregate tools count.", + "type": "integer" +}
- Changed
get_regulatory_map1 field changed- added
Output schema / properties / meta / properties / total_activeAdded value: +{ + "description": "How many of the matches are still operating — the number the aggregate tools count.", + "type": "integer" +}
- Changed
search_platforms4 fields changed- changed
Input schema / properties / per_page / descriptionPrevious value: -"Results per page, 1-100. Default 20."New value: +"Results per call, 1-25. Default 20. Narrow the filters rather than asking for more — a wide page spends context on rows nobody reads." - changed
Input schema / properties / per_page / maximumPrevious value: -100New value: +25 - added
Output schema / properties / meta / properties / total_activeAdded value: +{ + "description": "How many of the matches are still operating — the number the aggregate tools count.", + "type": "integer" +} - added
Output schema / properties / platforms / items / properties / activeAdded value: +{ + "description": "False when the platform has stopped operating. Its page is still reachable.", + "type": "boolean" +}
5 tool updates
- First observed
get_industry_news - First observed
get_market_overview - First observed
get_regulatory_map - First observed
report_inaccuracy - First observed
search_platforms
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Search 400k+ SaaS and software companies by category, technology, country, pricing, and more.
Search European tech funding rounds, companies, investors and exits — sourced, EUR-normalized.
Search and analyze 5,600+ companies across 30 technology verticals.
UBO, sanctions & ownership graph. 23 tools, 130.7M entities, 31 registries.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceQuery 13,000+ US consumer lenders with eligibility criteria, rates, CFPB complaints, and ratings. Find matching lenders by borrower profile, get full profiles, compare lenders, and check eligibility.MIT

mcp-octagonofficial
AlicenseBqualityCmaintenanceDeliver real-time investment research with extensive private and public market data.3176147MIT- AlicenseAqualityDmaintenanceSearch companies, officers, and filing history across 140+ jurisdictions worldwide using the OpenCorporates API.525MIT
- FlicenseNot gradedqualityDmaintenanceProvides comprehensive enterprise e-commerce data including global store profiles, product category statistics, and sales performance analysis. It enables users to search for companies and evaluate their domestic and international e-commerce business layouts across various platforms.2-