# Directory Structure
```
โโโ README.md
```
# Files
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
```markdown
1 | # Gralio SaaS Database MCP
2 |
3 | ## ๐ Overview
4 |
5 | Access **3+ million SaaS reviews**, detailed pricing data, alternatives, ratings, funding information, growth metrics, user sentiment analysis, and functional feature data for over 30,000 software products.
6 |
7 | Turn your LLM into the ultimate software research assistantโfree from polluted web searches and marketing noise. All accessible via our free Gralio MCP endpoint.
8 |
9 | ## ๐ Data Highlights
10 |
11 | Our comprehensive database includes:
12 |
13 | - **3M+ SaaS Reviews** - In-depth user feedback and sentiment analysis
14 | - **Detailed Pricing Data** - Comprehensive pricing tiers and feature breakdowns
15 | - **Competitor Alternatives** - Identify and compare alternative solutions
16 | - **Company Funding & Growth** - Track investment rounds and growth trajectories
17 | - **User Sentiment Scores** - Aggregated sentiment from across the web
18 | - **Functional Feature Info** - Granular details on product capabilities
19 |
20 | ## ๐ Example Use Cases
21 |
22 | ### Finding Cheaper or Easier Alternatives
23 | Discover cost-effective alternatives to popular SaaS tools without compromising on features.
24 |
25 | ### Discovering Tools by Use Case
26 | Find the perfect tools based on specific feature requirements or use cases.
27 |
28 | ### Scouting Trending Competitors
29 | Identify high-growth competitors in your market space before they become major threats.
30 |
31 | ### Quick Reviews Vibe Check
32 | Get an overview of what users are saying about products across the web.
33 |
34 | ## โ๏ธ Integration Instructions
35 |
36 | ### Cursor Integration
37 |
38 | To connect Gralio MCP to your Cursor editor, add the following configuration in either:
39 |
40 | - **Project Configuration**: Create `.cursor/mcp.json` in your project directory
41 | - **Global Configuration**: Create `~/.cursor/mcp.json` in your home directory
42 |
43 | ```json
44 | {
45 | "mcpServers": {
46 | "gralio": {
47 | "url": "https://market.gralio.ai/mcp/sse"
48 | }
49 | }
50 | }
51 | ```
52 |
53 | ### Windsurf & Cascade Integration
54 |
55 | 1. Navigate to Windsurf settings (Settings > Advanced Settings)
56 | 2. Scroll down to the Cascade section
57 | 3. Add a new MCP server with the following configuration:
58 |
59 | ```json
60 | {
61 | "mcpServers": {
62 | "gralio": {
63 | "url": "https://market.gralio.ai/mcp/sse"
64 | }
65 | }
66 | }
67 | ```
68 |
69 | ### VS Code Integration
70 |
71 | Create or modify `.vscode/mcp.json` in your project's root directory:
72 |
73 | ```json
74 | {
75 | "servers": {
76 | "GralioSaaS": {
77 | "type": "sse",
78 | "url": "https://market.gralio.ai/mcp/sse"
79 | }
80 | }
81 | }
82 | ```
83 |
84 | ### Claude Desktop Integration
85 |
86 | Claude Desktop supports remote HTTP/SSE MCP servers via supergateway:
87 |
88 | 1. **Test Supergateway**:
89 | ```bash
90 | npx -y supergateway --sse "https://market.gralio.ai/mcp/sse"
91 | ```
92 |
93 | 2. **Configure Claude Desktop**:
94 | Add to your Claude MCP configuration file:
95 |
96 | ```json
97 | {
98 | "mcpServers": {
99 | "gralio_remote": {
100 | "command": "npx",
101 | "args": [
102 | "-y",
103 | "supergateway",
104 | "--sse",
105 | "https://market.gralio.ai/mcp/sse"
106 | ]
107 | }
108 | }
109 | }
110 | ```
111 |
112 | 3. **Restart Claude Desktop** for changes to take effect.
113 |
114 | ## ๐ง Contact
115 |
116 | For more details on the data and how to use it, please refer to our [Gralio MCP Page](https://market.gralio.ai/mcp).
117 |
```