Skip to content

Conversation

Copy link
Contributor

Copilot AI commented Sep 17, 2025

This PR adds a comprehensive collection and documentation of MCP (Model Context Protocol) servers that support HTTP protocol communication, making them suitable for integration with the Askman Chrome Extension.

What's Added

📚 Complete Documentation Suite

  • docs/mcp-servers.md - Detailed catalog of 10+ HTTP-compatible MCP servers including:

    • Official Anthropic servers: SQLite, Filesystem, Git, PostgreSQL, GitHub, Google Drive, Slack
    • Community servers: Web Search, REST API, Weather services
    • Each server documented with capabilities, authentication methods, repositories, and use cases
  • docs/README.md - Comprehensive integration guide covering:

    • Security requirements (CORS, HTTPS, token authentication) for Chrome extensions
    • Performance considerations and best practices
    • Configuration examples and deployment instructions
    • Step-by-step getting started guide
  • docs/examples.md - Practical implementation examples featuring:

    • TypeScript integration code with error handling
    • Enhanced PageChatService with MCP capabilities
    • Configuration management and testing patterns
    • Chrome extension-specific considerations

⚙️ Configuration System

  • src/assets/conf/mcp-servers.toml - Ready-to-use TOML configuration templates for all documented servers with:

    • Complete server definitions with endpoints and authentication
    • Environment-specific settings and security configurations
    • Capability declarations and service-specific options
  • Updated src/assets/conf/external-links.toml - Added MCP specification and resource links

🔗 Enhanced Project Integration

  • Updated main README.md with dedicated MCP Server Integration section highlighting:
    • HTTP protocol support for Chrome extension compatibility
    • Secure token-based authentication
    • Extensive server catalog with 10+ documented options
    • Easy TOML-based configuration system

Key Features

Chrome Extension Focused: All servers verified for browser compatibility with proper CORS, HTTPS, and security requirements documented.

HTTP Protocol Emphasis: Specifically collected servers that support HTTP transport, making them accessible from web-based Chrome extension environments.

Security First: Comprehensive documentation of authentication patterns, content security policies, and secure integration practices.

Developer Ready: Includes practical TypeScript examples, error handling patterns, testing approaches, and configuration management.

Extensible Architecture: Provides a framework for easily adding new MCP servers in the future.

Example Usage

// Configure GitHub MCP server
const githubClient = new MCPClient({
  name: "GitHub Integration",
  endpoint: "https://mcp-github.example.com",
  authentication: "bearer",
  api_key: "ghp_your_token",
  capabilities: ["repositories", "files"],
  enabled: true
});

// Analyze repository structure
const repoInfo = await githubClient.call('get_repository_structure', {
  owner: 'askman-dev',
  repo: 'askman-chrome-extension'
});

This implementation provides developers with everything needed to integrate external data sources and tools via HTTP-compatible MCP servers into the Askman Chrome extension, enabling enhanced AI capabilities through secure, standardized server connections.

Fixes #229.


💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.

Copy link
Contributor Author

Copilot AI commented Sep 17, 2025

@crazygo 👋 This repository doesn't have Copilot instructions. With Copilot instructions, I can understand the repository better, work faster and produce higher quality PRs.

I can generate a .github/copilot-instructions.md file for you automatically. Click here to open a pre-filled issue and assign it to me. I'll write the instructions, and then tag you for review.

Copilot AI changed the title [WIP] Collect MCP servers that can use the HTTP protocol. feat: add comprehensive MCP servers HTTP protocol collection and documentation Sep 17, 2025
Copilot finished work on behalf of crazygo September 17, 2025 12:26
Copilot AI requested a review from crazygo September 17, 2025 12:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Collect MCP servers that can use the HTTP protocol.

2 participants