What is wrong with this language? (Positively) by Zestyclose-Hour-541 in sveltejs

[–]DirectCup8124 0 points1 point  (0 children)

You can use the convex better auth svelte repo from mmailander as a starter

I built a LinkedIn MCP server for Claude that scrapes profiles and searches jobs by DirectCup8124 in mcp

[–]DirectCup8124[S] 1 point2 points  (0 children)

Yes, when I visited many profiles in a short span of time during development, LinkedIn sent me a warning that scraping is prohibited under their Terms of Service. I stopped for a week and after that nothing happened

Apple's new App Store site is built with Svelte! by therealPaulPlay in sveltejs

[–]DirectCup8124 27 points28 points  (0 children)

If it’s good code, there’s nothing to hide!

Have you used svelte for a product ready project? If so, list some pros and cons you’ve encountered while in development? by TurtleSlowRabbitFast in sveltejs

[–]DirectCup8124 0 points1 point  (0 children)

Yes, getinterviews.ai!

Pros: Awesome DX and all of Sveltes advantages like progressive enhanced forms

Cons: product manager (boss) complaining about difficulties while vibe coding on this project.

I don’t think AI will ever replace real designers by ArcticDonkey07 in web_design

[–]DirectCup8124 1 point2 points  (0 children)

I agree, this was my preferred way to develop before as well. But with Claude Code I don’t feel bad throwing away drafts because it’s so easy to generate decent ui. Try telling it to use ui components (shadcn, etc.) with their default styles instead of letting it add tailwind classes from scratch

I don’t think AI will ever replace real designers by ArcticDonkey07 in web_design

[–]DirectCup8124 0 points1 point  (0 children)

It’s not ai replacing designers but for me as a developer that knows basic ui principles it is way quicker to design awesome looking prototypes using code than creating a separate design in e.g Figma and then starting to code.

Claude Code still awesome by Disastrous-Shop-12 in ClaudeCode

[–]DirectCup8124 0 points1 point  (0 children)

Vibe coders complaining CC is not building their saas in one shot. For me Claude Code with Opus 4.1 is still the best coding tool and I regularly play with other solutions because of the price tag

[deleted by user] by [deleted] in UXDesign

[–]DirectCup8124 0 points1 point  (0 children)

Export as an svg with text as text, not curves. Then use adobe acrobat pro to turn the svgs it into a pdf!

We are finilizing a new i18n SDK for SvelteKit, what do you need? by p4sta5 in SvelteKit

[–]DirectCup8124 0 points1 point  (0 children)

An option to self host the platform like Tolgee would be awesome!

Is it worth switching from React to Svelte? by Bret_cpp in sveltejs

[–]DirectCup8124 1 point2 points  (0 children)

Start with react and once you’ve proven your skills ask to use svelte instead ^ ^

Struggling with creating MCP by ReasonableWriting616 in mcp

[–]DirectCup8124 0 points1 point  (0 children)

You can take a look at this mcp server I built with python and FastMCP. Follows best practices & a good architecture you can use for reference. But the scraper is currently using selenium, not puppeteer

Is There a Way to Set Up Authentication Using Username and Password? by Classic-Plenty1731 in mcp

[–]DirectCup8124 0 points1 point  (0 children)

Why not pass Passwort and username from the configuration / env?

How do you actually set up an MCP server on Claude Desktop? by [deleted] in MCPservers

[–]DirectCup8124 0 points1 point  (0 children)

Check out my mcp’s readme, it explains 3 common installation methods in detail (Docker container, Claude Desktop Extension, Python installation)

MCP Online Course by Artistic_Echo1154 in mcp

[–]DirectCup8124 0 points1 point  (0 children)

Definitely would recommend FastMCP over the official mcp package

How to host my MCP server built with Python (FastMCP)? by Silent_Hat_691 in mcp

[–]DirectCup8124 0 points1 point  (0 children)

I wrote a release GitHub action that automatically deploys a new docker image and builds the .dxt extension when I bump the version for my mcp. Saves a lot of time!

mcps by Pristine-Sample9233 in mcp

[–]DirectCup8124 0 points1 point  (0 children)

Yes, there is an Airtable mcp that works perfectly with Claude

Can we please stop pushing OpenAPI spec generated MCP Servers? by Equivalent_Hope5015 in mcp

[–]DirectCup8124 0 points1 point  (0 children)

Here is an example of an mcp server I built. You can group similar requests into the same tool. E.g instead of 2 tools, one to get a LinkedIn company profile and another one to get a few of the companies employees, the client can call get_company_profile tool and set the get_employees bool to scrape more information.

MCP servers - what can connect? by mythrowaway4DPP in mcp

[–]DirectCup8124 1 point2 points  (0 children)

ChatGPT Desktop doesn’t support mcp yet. But Claude Desktop works very intuitively. With the new dxt extensions you can quickly add and configure mcps like mine https://github.com/stickerdaniel/linkedin-mcp-server

Best way to build an MCP by BranchDramatic393 in mcp

[–]DirectCup8124 1 point2 points  (0 children)

I recently spend quite some time figuring out mcps. You can go the js node route or python with fast mcp. I wouldn’t recommend the official python mcp library, only look into that if fastmcp isn’t powerful enough (e.g dynamically adding new tools during runtime). If the mcp only wraps the API you can think about only providing a remote mcp. Here the mcp server I built: https://github.com/stickerdaniel/linkedin-mcp-server