-
Notifications
You must be signed in to change notification settings - Fork 4
Add MCPB bundle to release workflow and fix MCP server logging #69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
3daadf7
Add MCPB bundle support for Claude Desktop installation
CallumMcMahon 2b3e165
Fix stdout corruption in MCP server lifespan
CallumMcMahon 932eca0
Add MCPB bundle to release workflow and fix MCP server logging
CallumMcMahon 0af6254
update readme docs
CallumMcMahon 3cefc5d
Merge mcpb-bundle: add manifest.json and fix stdout print statement
CallumMcMahon 771772b
Update privacy policy URL to futuresearch.ai
CallumMcMahon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -217,3 +217,9 @@ __marimo__/ | |
|
|
||
| .history/ | ||
| .python-version | ||
|
|
||
| # MCPB bundles | ||
| *.mcpb | ||
|
|
||
| # MCP registry tokens | ||
| .mcpregistry_* | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| .venv/ | ||
| __pycache__/ | ||
| *.pyc | ||
| .pytest_cache/ | ||
| .mypy_cache/ | ||
| *.egg-info/ | ||
| server/lib/ | ||
| server/venv/ | ||
| .mcpregistry_github_token | ||
| .mcpregistry_registry_token | ||
| tests/ | ||
| dist/ | ||
| .ruff_cache/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,70 @@ | ||
| { | ||
| "manifest_version": "0.4", | ||
| "name": "everyrow-mcp", | ||
| "display_name": "Everyrow MCP Server", | ||
| "version": "0.1.9", | ||
| "description": "AI-powered dataframe ops: transform, dedupe, merge, rank, and screen with natural language", | ||
| "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.", | ||
| "author": { | ||
| "name": "FutureSearch", | ||
| "url": "https://everyrow.io" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/futuresearch/everyrow-sdk.git" | ||
| }, | ||
| "homepage": "https://everyrow.io", | ||
| "documentation": "https://github.com/futuresearch/everyrow-sdk/tree/main/everyrow-mcp", | ||
| "support": "https://github.com/futuresearch/everyrow-sdk/issues", | ||
| "server": { | ||
| "type": "uv", | ||
| "entry_point": "src/everyrow_mcp/server.py", | ||
| "mcp_config": { | ||
| "command": "uv", | ||
| "args": ["run", "${__dirname}/src/everyrow_mcp/server.py"], | ||
| "env": { | ||
| "EVERYROW_API_KEY": "${user_config.api_key}" | ||
| } | ||
| } | ||
| }, | ||
| "tools": [ | ||
| { | ||
| "name": "everyrow_screen", | ||
| "description": "Filter CSV rows based on criteria that require judgment" | ||
| }, | ||
| { | ||
| "name": "everyrow_rank", | ||
| "description": "Score and sort CSV rows based on qualitative criteria" | ||
| }, | ||
| { | ||
| "name": "everyrow_dedupe", | ||
| "description": "Remove duplicate rows using semantic equivalence" | ||
| }, | ||
| { | ||
| "name": "everyrow_merge", | ||
| "description": "Join two CSV files using intelligent entity matching" | ||
| }, | ||
| { | ||
| "name": "everyrow_agent", | ||
| "description": "Run web research agents on each row of a CSV" | ||
| } | ||
| ], | ||
| "user_config": { | ||
| "api_key": { | ||
| "type": "string", | ||
| "title": "Everyrow API Key", | ||
| "description": "Your API key from https://everyrow.io/api-key ($20 free credit)", | ||
| "sensitive": true, | ||
| "required": true | ||
| } | ||
| }, | ||
| "compatibility": { | ||
| "platforms": ["darwin", "linux", "win32"], | ||
| "runtimes": { | ||
| "python": ">=3.12" | ||
| } | ||
| }, | ||
| "keywords": ["everyrow", "dataframe", "csv", "ai", "data-processing", "dedupe", "merge", "rank", "screen"], | ||
| "license": "MIT", | ||
| "privacy_policies": ["https://futuresearch.ai/privacy/"] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as outdated.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.