MCP tool URLs issue #4

Closed
opened 2026-02-16 08:18:13 -05:00 by yindo · 3 comments
Owner

Originally created by @austinmw on GitHub (Apr 2, 2025).

Hi, I added this to my cursor MCP:

    "langgraph-docs-mcp": {
      "command": "uvx",
      "args": [
        "--from",
        "mcpdoc",
        "mcpdoc",
        "--urls",
        "LangGraph:https://langchain-ai.github.io/langgraph/llms.txt",
        "--urls",
        "LangChain:https://python.langchain.com/llms.txt",
        "--transport",
        "stdio"
      ]
    }

However, if I ask the Agent, "call the list_doc_sources mcp tool", it returns this:

Image

So it looks like it is only using the second URL. Are the URLs specified incorrectly?

Originally created by @austinmw on GitHub (Apr 2, 2025). Hi, I added this to my cursor MCP: ``` "langgraph-docs-mcp": { "command": "uvx", "args": [ "--from", "mcpdoc", "mcpdoc", "--urls", "LangGraph:https://langchain-ai.github.io/langgraph/llms.txt", "--urls", "LangChain:https://python.langchain.com/llms.txt", "--transport", "stdio" ] } ``` However, if I ask the Agent, "call the list_doc_sources mcp tool", it returns this: ![Image](https://github.com/user-attachments/assets/ba649976-a2ab-45a5-8677-a2843e425228) So it looks like it is only using the second URL. Are the URLs specified incorrectly?
yindo closed this issue 2026-02-16 08:18:13 -05:00
Author
Owner

@austinmw commented on GitHub (Apr 2, 2025):

This format seems to work instead:

    "langgraph-docs-mcp": {
      "command": "uvx",
      "args": [
        "--from",
        "mcpdoc",
        "mcpdoc",
        "--urls",
        "LangGraph:https://langchain-ai.github.io/langgraph/llms.txt,LangChain:https://python.langchain.com/llms.txt",
        "--transport",
        "stdio"
      ]
    }
@austinmw commented on GitHub (Apr 2, 2025): This format seems to work instead: ``` "langgraph-docs-mcp": { "command": "uvx", "args": [ "--from", "mcpdoc", "mcpdoc", "--urls", "LangGraph:https://langchain-ai.github.io/langgraph/llms.txt,LangChain:https://python.langchain.com/llms.txt", "--transport", "stdio" ] } ```
Author
Owner

@larsenweigle commented on GitHub (Apr 2, 2025):

I encountered a similar issue...

I used this in the cli to get it to work when optionally testing:

uvx --from mcpdoc mcpdoc \
    --urls "LangGraph:https://langchain-ai.github.io/langgraph/llms.txt" "LangChain:https://python.langchain.com/llms.txt" \
    --transport sse \
    --port 8082 \
    --host localhost

and

{
  "mcpServers": {
    "langgraph-docs-mcp": {
      "command": "uvx",
      "args": [
        "--from",
        "mcpdoc",
        "mcpdoc",
        "--urls",
        "LangGraph:https://langchain-ai.github.io/langgraph/llms.txt LangChain:https://python.langchain.com/llms.txt",
        "--transport",
        "stdio"
      ]
    }
  }
}
@larsenweigle commented on GitHub (Apr 2, 2025): I encountered a similar issue... I used this in the cli to get it to work when optionally testing: ```bash uvx --from mcpdoc mcpdoc \ --urls "LangGraph:https://langchain-ai.github.io/langgraph/llms.txt" "LangChain:https://python.langchain.com/llms.txt" \ --transport sse \ --port 8082 \ --host localhost ``` and ```json { "mcpServers": { "langgraph-docs-mcp": { "command": "uvx", "args": [ "--from", "mcpdoc", "mcpdoc", "--urls", "LangGraph:https://langchain-ai.github.io/langgraph/llms.txt LangChain:https://python.langchain.com/llms.txt", "--transport", "stdio" ] } } } ```
Author
Owner

@eyurtsev commented on GitHub (Apr 5, 2025):

@larsenweigle thanks for the fix.

The correct syntax is:

"--urls",
"LangGraph:https://langchain-ai.github.io/langgraph/llms.txt LangChain:https://python.langchain.com/llms.txt",
@eyurtsev commented on GitHub (Apr 5, 2025): @larsenweigle thanks for the fix. The correct syntax is: ```shell "--urls", "LangGraph:https://langchain-ai.github.io/langgraph/llms.txt LangChain:https://python.langchain.com/llms.txt", ```
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/mcpdoc#4