Build latest book artifacts / build (push) Canceled after 0s
dependency resolution / resolve (3.11) (push) Canceled after 0s
dependency resolution / resolve (3.13) (push) Canceled after 0s
deploy-pages / build (push) Canceled after 0s
deploy-pages / deploy (push) Canceled after 0s
i18n consistency check / check (push) Canceled after 0s
provider adoption tests / test (chapter2/context-compression) (push) Canceled after 0s
provider adoption tests / test (chapter2/prompt-injection) (push) Canceled after 0s
provider adoption tests / test (chapter2/system-hint) (push) Canceled after 0s
provider adoption tests / test (chapter3/log-sanitization) (push) Canceled after 0s
web-search-agent tests / test (push) Canceled after 0s
web-search-agent tests / agentbook (push) Canceled after 0s
31 lines
1013 B
Python
31 lines
1013 B
Python
import mcp
|
|
from mcp.client.streamable_http import streamablehttp_client
|
|
import json
|
|
import base64
|
|
|
|
config = {
|
|
"githubPersonalAccessToken": "token"
|
|
}
|
|
# Encode config in base64
|
|
config_b64 = base64.b64encode(json.dumps(config).encode()).decode()
|
|
api_key = "fkey"
|
|
|
|
# Create server URL
|
|
url = f"https://url?config={config_b64}&api_key={api_key}"
|
|
print(url)
|
|
|
|
async def main():
|
|
# Connect to the server using HTTP client
|
|
async with streamablehttp_client(url) as (read_stream, write_stream, _):
|
|
async with mcp.ClientSession(read_stream, write_stream) as session:
|
|
# Initialize the connection
|
|
await session.initialize()
|
|
# List available tools
|
|
tools_result = await session.list_tools()
|
|
print(f"Available tools: {', '.join([t.name for t in tools_result.tools])}")
|
|
result = await session.call_tool("search_code", {
|
|
"per_page":10,
|
|
"q": "bubble sort language:python"
|
|
})
|
|
print(result)
|