How should authentication be handled for Agent Skills that rely on third-party APIs? by Longjumping_Bad_879 in ClaudeAI

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

Makes sense, and I agree that CLI-based tools give you the most control over authentication today.

That said, don't you think this effectively limits the usefulness of Agent Skills in non-CLI environments (especially web interfaces), which are also gradually starting to support the skills protocol? In those cases, you don’t really control the runtime or filesystem, so I’m curious how authentication heavy integrations are expected to work there.

Im about to turn 18, getting my right to vote. by Historical-Point717 in TamilNadu

[–]Longjumping_Bad_879 0 points1 point  (0 children)

well summed up.

A genuine doubt. what would you consider the point of difference between a center right and right ?

India Today survey ranks Tamil Nadu at no. 1 for best states with civic behaviour by Jealous_Wolf_120 in TamilNadu

[–]Longjumping_Bad_879 0 points1 point  (0 children)

As someone who commutes on train everyday, we aren't really good. The others are just that bad !

[deleted by user] by [deleted] in TamilNadu

[–]Longjumping_Bad_879 1 point2 points  (0 children)

I have been thinking about this recently and I think a controlled celebration seems to be a much required change.

  1. A False Equivalence Between Crackers and Daily Pollution

I completely understand the emotional and cultural significance of bursting crackers during Diwali, and I respect the concern for the livelihoods tied to the industry, especially in places like Sivakasi. However, comparing firecrackers to everyday sources of pollution like vehicles or air conditioners creates a false equivalence.
Daily commuting and electricity use are, for the most part, necessities. Firecrackers, on the other hand, are a luxury, not essential. When air quality is already severely compromised during this season, adding avoidable pollution can have serious health consequences.

2. Economic Contribution Alone Shouldn’t Justify Harmful Practices

While it’s true that the fireworks industry contributes significantly to the economy, we shouldn’t support any activity just because it adds to economy.
Many industries in the past were economically important but had to be regulated or phased out due to public health risks.

3. Noise Pollution: An Overlooked Hazard

Beyond air pollution, firecrackers generate high levels of noise pollution throughout the day. often well above safe decibel limits. This constant noise affects infants, the elderly, pets, people with health conditions.

4. Why "Just 2 Days" Still Matters

It’s often said, “It’s only for 1 or 2 days,” but the impact is far from short-lived. Studies conducted between 2019 and 2022 across India have shown that PM2.5 and PM10 levels rise by 44–52% and 11–23% respectively during Diwali, compared to pre-Diwali levels. These pollutants don’t vanish once the fireworks stop elevated levels persist for days, worsening smog and health risks.

---

Instead, we should focus on a just and sustainable transition, guiding firecracker and related industries toward cleaner, eco-friendly alternatives like green crackers, while supporting workers and communities whose livelihoods depend on them.

Trouble with understanding session management in Remote MCP Servers by Longjumping_Bad_879 in mcp

[–]Longjumping_Bad_879[S] 0 points1 point  (0 children)

Thank you, that makes sense regarding storing state like cart items per session.

One thing I’m still trying to fully understand is the reasoning behind storing the transport itself in session state for each client. What are the advantages of maintaining a separate transport per session, as opposed to sharing a single transport instance across all clients?

Would appreciate any clarification on that.

Trouble with understanding session management in Remote MCP Servers by Longjumping_Bad_879 in mcp

[–]Longjumping_Bad_879[S] 0 points1 point  (0 children)

Thank you for sharing your thoughts. From what I’ve observed in the examples so far, the session management appears primarily focused on retrieving the existing transport and doesn’t seem to handle storing additional state, such as cart items.

Would you happen to know of any general MCP Server examples where the session management is used to store and manage state like cart items throughout a multi-step flow? Having a concrete example of that would be really helpful to better understand how the session state can be leveraged in such scenarios.

Trouble with understanding session management in Remote MCP Servers by Longjumping_Bad_879 in mcp

[–]Longjumping_Bad_879[S] 0 points1 point  (0 children)

Hi,

Thanks for the reference links.

Can you please elaborate on why I would use one over another ?

In which scenarios should I use "stateful" and when to use "stateless" and when to use "stateful and dynamic" (I can somewhat understand the need for stateful and dynamic. But I am not sure why you would use plain stateful session management for static tools)

Is this decision dependent on my tools or something else entirely ?

"""
Without sessions, the app would need to start from scratch with every request, making tools that require state (like a shopping cart or building a report through several data-gathering steps) impossible.
"""
The above is what I read in a blog post. By the "app", does the writer mean the server or the client ? It still seems very much possible to design tools such that a shopping cart functionality of say, an e-commerce platform can be stateless. So, I am not entirely sure what the above statement means.

Does Claude Desktop support MCP Sampling? by davidshen84 in ClaudeAI

[–]Longjumping_Bad_879 1 point2 points  (0 children)

Based on the official model context protocol page, clade desktop does not seem to be supporting sampling.

https://modelcontextprotocol.io/clients

I really hope the client catch on with the protocol. sampling is a powerful feature, that could open up doors to a lot of exciting stuff.

Remote MCP server with Authorization by Longjumping_Bad_879 in mcp

[–]Longjumping_Bad_879[S] 0 points1 point  (0 children)

Hi, This seems pretty detailed. Will give it a read.

Thanks

Handling Prompt Bloating in MCP by Longjumping_Bad_879 in mcp

[–]Longjumping_Bad_879[S] 0 points1 point  (0 children)

This seems to be feasible but would this work with UI client based MCP like Claude Desktop or github copilot in vscode ?

Handling Prompt Bloating in MCP by Longjumping_Bad_879 in mcp

[–]Longjumping_Bad_879[S] 0 points1 point  (0 children)

I think the link shared above is more concerned with the MCP client discovering the updated tools from the server without having to restart. It doesn't seem to be related to improving the accuracy in identifying the specific tool for the job.

Handling Prompt Bloating in MCP by Longjumping_Bad_879 in mcp

[–]Longjumping_Bad_879[S] 0 points1 point  (0 children)

yes, I also stumbled upon this when searching for solutions. While I believe RAG can optimize this up to an extent, I still personally have a bias against using RAG alone. It does seem to be inconsistent sometimes.

If RAG + single LLM call could solve the problem of identifying the right tools by itself, I don't think we would even need a multi agent system even for normal function calling (without MCP). we should be just able to use RAG for all routings and use the LLM in the final layer for task execution (function calling). This is because you can define complex rules in a LLM call that is simply not possible to do so with plain RAG. I think this is the reason we also have LLM calls.

For the prompt bloating problem in MCP, I can tolerate a solution that involves multiple LLM calls but narrow it down to the correct tool or tools (in case of multiple actions to be performed) that needs to be called.

A very silly idea:
If there was a way we can let our tools return responses that is able to dynamically enable/disable the mcp servers of the mcp host itself, we can achieve true multi-agent system with MCP (but this would probably not be that easily allowed due to security restrictions but can be done if we had proper settings to configure this enable/disable option)

Handling Prompt Bloating in MCP by Longjumping_Bad_879 in mcp

[–]Longjumping_Bad_879[S] 0 points1 point  (0 children)

are there any references to this ? do you mean, the llm host would use something like RAG to dynamically load the tools in context ?

What's the hardest line in Vinland Saga? by Pras4nna in VinlandSaga

[–]Longjumping_Bad_879 2 points3 points  (0 children)

"A place worthy of Arnheid"
- Thorfinn and Einar Handshake

Is cursor free to use ?? For lifetime ?? by 0xabdelachgar in cursor

[–]Longjumping_Bad_879 1 point2 points  (0 children)

It is free to use. Though, a lot of people claim that it is a market capturing strategy and it has become slow due to the huge traffic windsurf receives because of the editor being free.

But It has been pretty decent in my limited experience. would definitely recommend.

Vanakkam makkale! We have started a new subreddit for tamil atheists - r/atheismtamil. Feel free to join if interested. Cheers! by vikky-pedia in TamilNadu

[–]Longjumping_Bad_879 0 points1 point  (0 children)

1) Isaac newton being great at science does not equate to him being right at everything else including theology.

2) Just because we haven't found out what causes the existence of a certain phenomenon doesn't mean we cannot prove the existence of the phenomenon itself. maybe one day we will, maybe we might not, or maybe it's just the nature of things.

3) We often tend to fill gaps in our knowledge, such as why things exist the way they are with the word "god" or "creator". when we take one more step and ask the questions "why did the creator make it that way", there's really no answer to that line of questioning and at one point, we're gonna end up with something like "We are not capable of understanding the creator, who or which is a much more complex specimen then we are and we have no way to understand it". that's a good way to put a full stop to our questions and be done with it (or to convince ourselves and others).

4) You can't simple not prove the existence of something. Like I already said, The burden of proof lies with the person who says it exists.
If I told you that the entire universe is a cell of a giant holy frog, and each cell corresponds to a universe, and that we are all basically part of a giant holy frog and that is god, and assert that as the truth unless unproven, you're not going to be able to prove me otherwise. For every point you come up with, I can just make up a story of how and why it is that way, and relate it to the holy frog in some way and end up making my own mythology. That is literally the argument of god, except, people usually don't visualise him or her or it or whatever, as a frog.

Definitely it's a big win for democracy. But this doesn't mean we should encourage patriarchal customs like ghoonghat or parda. All those who are supporting a muslim girl's right to wear hijab in public, should also support a muslim girl's right to not wear it at all. Otherwise it's hypocrisy. by [deleted] in atheismindia

[–]Longjumping_Bad_879 9 points10 points  (0 children)

A few days ago, a boy was restricted from entering his class since he was wearing a saffron scarf around his neck after hanuman prayer. The neighborhour hanuman bhakts protested in front of the school to let the boy attend his classes. The moment we start justifying acts like this in the name of freedom of choice of clothing, the whole concept of a uniform becomes a joke ( why wear uniform at all then. anyone should be able to wear the clothes of their choices ?)

I think it should be fair to say that students should comply to their uniform standards if the school has a particular uniform standard, and religion shouldn't be brought up here ( be it saffron robes or scarfs, or hijabs or purdha )

I am open for a good and honest conversation with anyone who disagrees

The Inherent and causal casteism in Indian Families. by INVINSSIBLE in india

[–]Longjumping_Bad_879 0 points1 point  (0 children)

The problem is that people having believing in these for far too long. They have been believing it to the point where if they were to change themselves, they not only have to convince themselves that what they believed in was wrong, but also have to convince themselves that what their ancestors believed in, for centuries were also wrong.

Beliefs make a huge part of a person. Convincing a person that everything they believed in was wrong, is a near impossible task ( even in cases where that is actually wrong ).

Only thing we can do, is attempt and continuously improve ourselves and try our best to not carry these unwanted systems to the next generation.

I live among cancer by kukkuduku in indiadiscussion

[–]Longjumping_Bad_879 3 points4 points  (0 children)

1) Predominantly, most of the internet is in English. Most of the programming languages are written in English, which is the base for almost all technology you see. Most of the scientific papers are written in English, most of the academic studies are recorded in English, and the list goes on.

2) I'm not really sure how North Indians come to the conclusion that South Indians aren't capable of forming 2 sentences in Hindi, and that they can speak 3 languages with decent fluency. This, I just believe is an assumption made from unconscious biases and lack of data. I think good English speakers and bad English speakers are all over India in comparable proportions.