|
| 1 | +{ |
| 2 | + "manifest_version": "0.4", |
| 3 | + "name": "everyrow-mcp", |
| 4 | + "display_name": "Everyrow MCP Server", |
| 5 | + "version": "0.1.9", |
| 6 | + "description": "AI-powered dataframe ops: transform, dedupe, merge, rank, and screen with natural language", |
| 7 | + "long_description": "MCP server for everyrow: agent ops at spreadsheet scale. This server exposes everyrow's 5 core operations as MCP tools, allowing LLM applications to screen, rank, dedupe, merge, and run agents on CSV files. All tools operate on local CSV files.", |
| 8 | + "author": { |
| 9 | + "name": "FutureSearch", |
| 10 | + "url": "https://everyrow.io" |
| 11 | + }, |
| 12 | + "repository": { |
| 13 | + "type": "git", |
| 14 | + "url": "https://github.com/futuresearch/everyrow-sdk.git" |
| 15 | + }, |
| 16 | + "homepage": "https://everyrow.io", |
| 17 | + "documentation": "https://github.com/futuresearch/everyrow-sdk/tree/main/everyrow-mcp", |
| 18 | + "support": "https://github.com/futuresearch/everyrow-sdk/issues", |
| 19 | + "server": { |
| 20 | + "type": "uv", |
| 21 | + "entry_point": "src/everyrow_mcp/server.py", |
| 22 | + "mcp_config": { |
| 23 | + "command": "uv", |
| 24 | + "args": ["run", "${__dirname}/src/everyrow_mcp/server.py"], |
| 25 | + "env": { |
| 26 | + "EVERYROW_API_KEY": "${user_config.api_key}" |
| 27 | + } |
| 28 | + } |
| 29 | + }, |
| 30 | + "tools": [ |
| 31 | + { |
| 32 | + "name": "everyrow_screen", |
| 33 | + "description": "Filter CSV rows based on criteria that require judgment" |
| 34 | + }, |
| 35 | + { |
| 36 | + "name": "everyrow_rank", |
| 37 | + "description": "Score and sort CSV rows based on qualitative criteria" |
| 38 | + }, |
| 39 | + { |
| 40 | + "name": "everyrow_dedupe", |
| 41 | + "description": "Remove duplicate rows using semantic equivalence" |
| 42 | + }, |
| 43 | + { |
| 44 | + "name": "everyrow_merge", |
| 45 | + "description": "Join two CSV files using intelligent entity matching" |
| 46 | + }, |
| 47 | + { |
| 48 | + "name": "everyrow_agent", |
| 49 | + "description": "Run web research agents on each row of a CSV" |
| 50 | + } |
| 51 | + ], |
| 52 | + "user_config": { |
| 53 | + "api_key": { |
| 54 | + "type": "string", |
| 55 | + "title": "Everyrow API Key", |
| 56 | + "description": "Your API key from https://everyrow.io/api-key ($20 free credit)", |
| 57 | + "sensitive": true, |
| 58 | + "required": true |
| 59 | + } |
| 60 | + }, |
| 61 | + "compatibility": { |
| 62 | + "platforms": ["darwin", "linux", "win32"], |
| 63 | + "runtimes": { |
| 64 | + "python": ">=3.12" |
| 65 | + } |
| 66 | + }, |
| 67 | + "keywords": ["everyrow", "dataframe", "csv", "ai", "data-processing", "dedupe", "merge", "rank", "screen"], |
| 68 | + "license": "MIT", |
| 69 | + "privacy_policies": ["https://futuresearch.ai/privacy/"] |
| 70 | +} |
0 commit comments