fitter
New way for collect information from the API's/Websites
File Explorer
Download Latest Version (.zip)- demo-site.md
- bug_report.md
- feature_request.md
- ci.yaml
- docker_base.yaml
- release.yaml
- FUNDING.yml
- main.go
- auth.go
- browser_login.go
- main.go
- main.go
- main.go
- main_test.go
- reference.go
- main.go
- app.js
- docs.json
- engine.js
- examples.json
- index.html
- jsonhl.js
- live.html
- md.js
- pending.js
- README.md
- router.js
- sample.pdf
- share.js
- styles.css
- theme.js
- view-docs.js
- view-examples.js
- view-home.js
- view-playground.js
- Dockerfile
- mcp-listing.md
- config_browser.json
- config_cli.json
- config_current_time.json
- config_docker.json
- config_image.json
- config_image_multiple.json
- config_playwright.json
- config_plugin.json
- config_ref.json
- config_seq.json
- config_static_connector.json
- config_weather.json
- docker-compose.yml
- README.md
- main.go
- connector.go
- hardcoder.go
- plugin.json
- plugin_cli.json
- README.md
- config_api.json
- config_book_authors.json
- config_conditions.json
- config_crypto_csv.json
- config_github_trending.json
- config_google_news.json
- config_morning_briefing.json
- config_pdf.json
- config_static.json
- config_telegram.json
- config_trading_signals.json
- config_web.json
- README.md
- lib.go
- agent.go
- agent_test.go
- prompt.go
- repl.go
- array.go
- bool.go
- builder.go
- null.go
- number.go
- number_test.go
- object.go
- omit.go
- pure_string.go
- static.go
- string.go
- universal.go
- universal_test.go
- uuid.go
- config.go
- field.go
- browser.go
- browser_js.go
- chromium.go
- connectors.go
- docker.go
- from_file.go
- oauth2.go
- playwright.go
- README.md
- server.go
- server_test.go
- static.go
- stealth.go
- stealth.min.js
- client.go
- inspect.go
- inspect_test.go
- limitter.go
- logger.go
- console.go
- file_notifier.go
- http.go
- notifier.go
- redis.go
- telegram.go
- login.go
- oauthflow_test.go
- presets.go
- tokenfile.go
- condition_test.go
- engine.go
- file.go
- html.go
- html_test.go
- index.html
- index.xml
- json.go
- json_array_test.go
- json_example_array.json
- json_example_object.json
- json_object_test.go
- model_field_parser_test.go
- parse_engine.go
- parser.go
- pdf.go
- pdf_test.go
- README.md
- sample.pdf
- static_array_test.go
- xml.go
- xml_test.go
- xpath.go
- xpath_test.go
- plugin.go
- store.go
- processor.go
- references.go
- registry.go
- runtime.go
- http_server.go
- scheduler.go
- trigger.go
- array.go
- common.go
- expression.go
- expression_test.go
- file.go
- formatter.go
- formatter_test.go
- test_file.log
- test_formatted_file.log
- build.bash
- build_mcpb.bash
- git_release.sh
- .gitignore
- CODE_OF_CONDUCT.md
- demo.svg
- Dockerfile
- Dockerfile.mcp
- Dockerfile.mcp-playwright
- go.mod
- go.sum
- LICENSE
- README.md
- server.json
# Installation Guide
git clone https://github.com/PxyUp/fitter
Downloads the entire project code from GitHub to your computer.
cd fitter
Moves into the project folder you just downloaded.
2. Docker
Easy Recommended- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker run --rm -p 8080:8080 \
Runs the built image as an actual container.
claude mcp add fitter -s user -- docker run --rm -i ghcr.io/pxyup/fitter-mcp:latest
Runs the built image as an actual container.
docker run --rm -i ghcr.io/pxyup/fitter-mcp:playwright # stdio mode
Runs the built image as an actual container.
docker run --rm -it -v fitter-tokens:/tokens --entrypoint fitter_cli \
Runs the built image as an actual container.
docker run --rm -it -p 8988:8988 -e FITTER_AUTH_LISTEN=0.0.0.0 \
Runs the built image as an actual container.
Pulled directly from this repo's README.
3. Go
Mediumgo build -o fitter_mcp ./cmd/mcp
Compiles the Go program into an executable.
go run github.com/mxschmitt/playwright-go/cmd/playwright@v0.6100.0 install
Runs the Go program directly without a separate build step.
go run cmd/fitter/main.go --path=./examples/config_api.json
Runs the Go program directly without a separate build step.
go run cmd/cli/main.go --path=./examples/cli/config_cli.json
Runs the Go program directly without a separate build step.
go run cmd/agent/main.go
Runs the Go program directly without a separate build step.
Pulled directly from this repo's README.
