{"id":29133222,"url":"https://github.com/langfuse/n8n-nodes-langfuse","last_synced_at":"2026-04-07T04:31:18.739Z","repository":{"id":301565396,"uuid":"1009646981","full_name":"langfuse/n8n-nodes-langfuse","owner":"langfuse","description":"n8n.io node for Langfuse (Prompt Management)","archived":false,"fork":false,"pushed_at":"2025-07-25T22:21:11.000Z","size":323,"stargazers_count":21,"open_issues_count":4,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-06T14:19:36.283Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/langfuse.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-27T13:25:53.000Z","updated_at":"2025-10-13T09:42:53.000Z","dependencies_parsed_at":"2025-07-04T16:29:00.342Z","dependency_job_id":null,"html_url":"https://github.com/langfuse/n8n-nodes-langfuse","commit_stats":null,"previous_names":["langfuse/n8n-nodes-langfuse"],"tags_count":0,"template":false,"template_full_name":"n8n-io/n8n-nodes-starter","purl":"pkg:github/langfuse/n8n-nodes-langfuse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/langfuse%2Fn8n-nodes-langfuse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/langfuse%2Fn8n-nodes-langfuse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/langfuse%2Fn8n-nodes-langfuse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/langfuse%2Fn8n-nodes-langfuse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/langfuse","download_url":"https://codeload.github.com/langfuse/n8n-nodes-langfuse/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/langfuse%2Fn8n-nodes-langfuse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31500397,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-30T07:02:15.440Z","updated_at":"2026-04-07T04:31:18.732Z","avatar_url":"https://github.com/langfuse.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# n8n-nodes-langfuse\n\nThis is an n8n community node. It lets you use Langfuse in your n8n workflows.\n\n[Langfuse](https://langfuse.com) is an open-source LLM engineering platform that provides observability, metrics, evaluations, prompt management and a playground.\n\n[n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation platform.\n\n[Installation](#installation)  \n[Operations](#operations)  \n[Credentials](#credentials)\n[Development](#development)  \n[Resources](#resources)\n\n## Installation\n\n### Self-hosted n8n\n\nFollow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.\n\n```bash\nnpm install @langfuse/n8n-nodes-langfuse\n```\n\n### n8n Cloud\n\nThis is a verified community node. Search for `Langfuse` to use this node in n8n Cloud.\n\n## Operations\n\n### Get Prompt\n\nThis node can be used to get a prompt from [Langfuse Prompt Management](https://langfuse.com/docs/prompts).\n\nSteps\n\n1. Enter the `name` of the prompt\n2. Enter the `label` that identifies the prompt version that you want to fetch. Defaults to \"production\". Learn more about prompt labels in Langfuse [here](https://langfuse.com/docs/prompts/get-started#labels).\n\n_Example workflow that retrieves the system prompt for the agent from Langfuse:_\n\n![n8n-changelog](https://github.com/user-attachments/assets/4d224c2f-86b6-4ad4-a64a-45c7fe6e3595)\n\n## Credentials\n\nTo use this node, you need to authenticate with Langfuse. You'll need:\n\n1. A Langfuse account, either [Langfuse Cloud](https://cloud.langfuse.com) or [self-hosted](https://langfuse.com/self-hosting).\n2. API credentials from your Langfuse project settings: hostname, public key, secret key\n\n## Development\n\n### Prerequisites\n\nYou need the following installed on your development machine:\n\n- [git](https://git-scm.com/downloads)\n- Node.js and npm. Minimum version Node 20. You can find instructions on how to install both using nvm (Node Version Manager) for Linux, Mac, and WSL [here](https://github.com/nvm-sh/nvm). For Windows users, refer to Microsoft's guide to [Install NodeJS on Windows](https://docs.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-windows).\n- Install n8n with:\n  ```\n  npm install n8n -g\n  ```\n- Recommended: follow n8n's guide to [set up your development environment](https://docs.n8n.io/integrations/creating-nodes/build/node-development-environment/).\n\n### Build new version\n\n```bash\nnpm run build\nnpm link\n```\n\n### Test in local n8n\n\n```bash\ncd ~/.n8n/custom\nnpm link n8n-nodes-langfuse\n```\n\n## Resources\n\n- [n8n community nodes documentation](https://docs.n8n.io/integrations/#community-nodes)\n- [Langfuse documentation](https://langfuse.com/docs)\n- [Langfuse Prompt Management](https://langfuse.com/docs/prompts)\n\n## License\n\n[MIT](https://github.com/langfuse/n8n-nodes-langfuse/blob/master/LICENSE.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flangfuse%2Fn8n-nodes-langfuse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flangfuse%2Fn8n-nodes-langfuse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flangfuse%2Fn8n-nodes-langfuse/lists"}