: http://biolabs.app:3000/sse
Status: Running
:

1

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "scientific-skills": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "http://YOUR_BIOLABS_URL:3000/sse"
      ]
    }
  }
}

Note:

2

3

from fastmcp import Client
import asyncio

async def main():
    async with Client("http://biolabs.app:3000/sse") as client:
        # Tum becerileri listele
        tools = await client.list_tools()
        print(f"Available tools: {tools}")
        
        # Bir araci cagir
        result = await client.call_tool("list_all_skills", {})
        print(result.content[0].text)

asyncio.run(main())

list_all_skills()
get_skill_info(skill_name)
search_skills(query)
read_skill_file(skill_name, file_path)
get_examples()

""

curl http://biolabs.app:3000/sse
Back to Home