88 questions
Advice
0
votes
0
replies
22
views
How can I integrate the Computer Use API to enable AI-powered navigation and actions within my own application?
I'm building a voice-assisted navigation feature for my app that would allow users to:
Navigate between screens/pages using voice commands
Have an AI agent take actions on the current page (clicking ...
Advice
0
votes
0
replies
52
views
AI/IDE Integration: Claude Code for VS Code vs. Cursor Models
I seem to be missing the subtleties in the IDE integration between these two options:
Claude Code for VS Code
Cursor Models
I've been been using Cursor for the Models; I've toggled a few, seems to ...
-1
votes
1
answer
663
views
Failed to connect to api.anthropic.com: UNABLE_TO_GET_ISSUER_CERT_LOCALLY [closed]
I am trying to run claude in the VS code terminal.
Claude returns this error message: UNABLE_TO_GET_ISSUER_CERT_LOCALLY.
Unable to connect to Anthropic services
Failed to connect to api.anthropic....
3
votes
1
answer
886
views
VS Code Claude extension fails with "SyntaxError: Unexpected token 'C'" on clean install
I'm trying to use the Claude Code extension, but it fails to initialize.
Environment:
Extension: 2.0.13
VS Code: 1.105.0
OS: Windows 11 (Windows_NT x64 10.0.26100)
Problem:
Immediately after ...
-4
votes
1
answer
481
views
Any way to load only some tools from an MCP server?
MCP server tool descriptions gobble up the token context window in AI agent frameworks like Claude Code.
For instance, the GitHub MCP server alone increases the starting context window by ~46k tokens. ...
0
votes
0
answers
54
views
Deny all but a subset of bash cURL commands in Claude properties
I want to block all but a specific set of network requests claude can perform. The settings.json I've tried doesn't work:
"permissions": {
"deny": [
"Bash(curl:*)&...
0
votes
1
answer
418
views
Automating access to models in AWS Bedrock
I'm trying to write a script that keeps the available Bedrock models in sync across multiple accounts (primarily to be sure that we have the same models available in DR as we do in production).
I've ...
1
vote
2
answers
1k
views
What's the correct anthropic version to use in bedrock?
I'm using Claude 4 via AWS Bedrock and I'm wondering what the correct anthropic_version is. As usual the AWS docs are, well, not great... I have this page, which gives these inference parameters:
{
...
0
votes
1
answer
218
views
AWS Bedrock Agent Action Group Creation Fails with Claude 3.5 Sonnet - Tool Name Validation Error [closed]
Problem
I was experiencing repeated failures when creating AWS Bedrock Agent action groups using Claude 3.5 Sonnet as the foundation model. The CloudTrail error indicated an APISchemaException with ...
2
votes
1
answer
1k
views
MCP error -32001 (Request timed out) when connecting Claude to Node.js MCP server
I am developing an MCP server with Node.js, Express /Typecript. The server should receive and process connections from Claude Desktop (client) via HTTP /mcp.
The server starts successfully, Claude ...
2
votes
1
answer
866
views
Error in the name of Claude 4 sonnet while using in cursor as custom model
We encountered an issue when using your API key:
Provider was unable to process your request
API error: Request failed with status code 400:
{ "error": { "message": "claude-...
3
votes
2
answers
2k
views
How to trigger "Resource" and "Prompts" in Claude Desktop?
I tried to copy the code from MCP's official website(https://www.claudemcp.com/docs/write-ts-server),
and I was able to see all the "tools" listed in my Claude desktop, and when I ask ...
11
votes
2
answers
8k
views
Using Claude Sonnet 4 in VS Code
I'm using VS Code Copilot AI chat with my Anthropic API Keys. I should be now able to choose Claude Sonnet 4 as an available model but it doesn't show up as an available model.
I did try to add it by:
...
11
votes
4
answers
13k
views
How do I use Claude Code with an existing Anthropic API Key?
Instead of going through claude console /login to create a new API key, I would like to use an existing Anthropic API key. How do I get Claude Code to do this? The /login command forces you to ...
1
vote
1
answer
561
views
Does Vscode Copilot extension in Agent mode only works with Claude?
New agent mode for GitHub Copilot extension in VSCode using Claude as LLM is great but I want to try with other models.
Even OpenAI model 4o is not working as Agent. I tried with Ollama and OpenRouter ...
2
votes
0
answers
766
views
Error Accessing Directory in MCP Filesystem Server - ENOENT Error (No such file or directory)
I'm trying to configure and run the Model Context Protocol (MCP) filesystem server using the ModelContextProtocol repository, but I'm encountering an error during setup.
Here's the config I'm using in ...
1
vote
1
answer
94
views
How to use AWSSDK.Extensions.Bedrock.MEAI with Claude from Anthropic? Amazon.BedrockRuntime.Model.ValidationException
I'm attempting to create a console app to use AWSSDK.Extensions.Bedrock.MEAI with Claude. However, I continue getting the following error:
Amazon.BedrockRuntime.Model.ValidationException: The provided ...
0
votes
1
answer
3k
views
Claude desktop - fetch failed error when using MCP server
Created an mcp server which calls another local server, trying to fetch this server using its local address (localhost:8000) but then I got this response from the mcp server:
{"type": "...
1
vote
1
answer
6k
views
Claude connected to github but repositories not available
I have the pro version of claude 3.7. I went into claude settings and connected my github account. Confirmed its connected in github. When create a new claude chat, and selecting the github icon. It ...
0
votes
1
answer
51
views
Focus tab after screenshot capture getDisplayMedia API
I am trying to capture a screenshot through my app. It works correctly for the 'Entire Screen' option, but for anything selected in the window or Chrome Tab, then the focus doesn't return to my tab ...
0
votes
0
answers
54
views
Mode Edits en Agent Copilot dont respond
When I ask something (including #codebase) Copilot still in searching... forever
I ask for example "describe this app #codebase" to Copilot chat in mode Edits with any model (Claude or gpt) ...
4
votes
3
answers
14k
views
AWS Bedrock: cannot invoke Anthropic Claude Sonnet 3.5 v2 model, raises error "Invocation of model ID with on-demand throughput isn’t supported."
I am trying to invoke the Anthropic Claude Sonnet 3.5 v2 model in AWS Bedrock. Here is my code (in Python using Boto3):
import boto3
import json
bedrock_runtime = boto3.client(service_name="...
1
vote
1
answer
578
views
Function calling with Claude on Amazon Bedrock in .NET Core
I want to build a basic LLM integration with function calling on Amazon Bedrock using Claude in .NET Core. I use the official AWSSDK.BedrockRuntime (version 3.7.412.3) nuget package by AWS.
After ...
0
votes
1
answer
986
views
Using AWS Bedrock Prompt Management with InvokeCommand
How do you use prompts stored in prompt management with a single invocation of the model? I setup a prompt with a variable called myInput but the docs don't specify how I can use this other than this ...
-5
votes
1
answer
1k
views
Is there a way to pass the prompt to Claude via the URL (i.e. URL parameter)? [closed]
ChatGPT can receive a prompt like so:
https://www.chatgpt.com/?q=capital%20of%20france%20
Is there a way to pass a prompt to Claude via the URL?
(this would be handy for integration with other ...