API for MCP - #24
Open
almoadi wants to merge 1 commit into
Open
Conversation
…d introduce new API scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add HTTP API Server
Summary
This PR converts the MCP (Model Context Protocol) server into an HTTP REST API, making it accessible via standard HTTP endpoints while maintaining all existing functionality.
Changes
New Files
src/api.ts- Express HTTP server with REST API endpointsAPI.md- Complete API documentation with examplesModified Files
package.json- Added Express dependencies and new npm scriptsFeatures
API Endpoints
GET /health- Health check endpointPOST /api/search- Full web search with content extractionPOST /api/search/summaries- Lightweight search summaries (no content extraction)POST /api/content- Single page content extractionKey Features
Dependencies Added
express- Web framework@types/express- TypeScript types for ExpressNew NPM Scripts
npm run api- Run API server in development modenpm run api:build- Build and run API server in production modeUsage
Development
Production
Custom Port
API Base URL
Default:
http://localhost:3000Example Request
Backward Compatibility
The original MCP server (
src/index.ts) remains unchanged and fully functional. This PR adds the API as an additional interface option.Testing
Documentation
Complete API documentation is available in
API.mdwith: