{"id":26190450,"url":"https://github.com/tizee/mcp-server-ietf","last_synced_at":"2025-10-07T01:47:31.951Z","repository":{"id":280959961,"uuid":"943140664","full_name":"tizee/mcp-server-ietf","owner":"tizee","description":"A Model Context Protocol server for fetching IETF documents (RFCs) for Large Language Models.","archived":false,"fork":false,"pushed_at":"2025-07-16T05:01:40.000Z","size":32,"stargazers_count":4,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-17T07:48:58.351Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tizee.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-05T08:29:19.000Z","updated_at":"2025-07-16T05:01:45.000Z","dependencies_parsed_at":"2025-07-16T11:51:56.655Z","dependency_job_id":"57718a8d-06ce-4144-a8d9-f6107591090e","html_url":"https://github.com/tizee/mcp-server-ietf","commit_stats":null,"previous_names":["tizee/mcp-server-ietf"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tizee/mcp-server-ietf","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tizee%2Fmcp-server-ietf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tizee%2Fmcp-server-ietf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tizee%2Fmcp-server-ietf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tizee%2Fmcp-server-ietf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tizee","download_url":"https://codeload.github.com/tizee/mcp-server-ietf/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tizee%2Fmcp-server-ietf/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278708036,"owners_count":26031932,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-12T00:53:58.282Z","updated_at":"2025-10-07T01:47:31.925Z","avatar_url":"https://github.com/tizee.png","language":"Python","funding_links":[],"categories":["Other Tools and Integrations","Document Processing","🤖 AI/ML"],"sub_categories":["How to Submit"],"readme":"# MCP-Server-IETF\n\nA Model Context Protocol server for fetching IETF documents (RFCs) for Large Language Models.\n\n## Overview\n\nThis project implements a [Model Context Protocol (MCP)](https://modelcontextprotocol.github.io/) server that provides access to IETF RFC documents. It enables Large Language Models to access RFC specifications through a standardized interface.\n\nKey features:\n- Download and cache RFC index and documents\n- Search RFCs by keyword in titles\n- Access RFC documents with pagination support\n- Extract metadata like page numbers from documents\n\n## Installation\n\n### Requirements\n- Python 3.11 or higher\n- Dependencies as listed in `pyproject.toml`\n\n### Install from source\n\n```bash\n# Clone the repository\ngit clone https://github.com/tizee/mcp-server-ietf\ncd mcp-server-ietf\n\n# Install with pip\npip install -e .\n```\n\n## Usage\n\n### Starting the server\n\n```bash\n# Start the server\nmcp-server-ietf\n```\n\nOr use it with the MCP inspector:\n\n```bash\nnpx @modelcontextprotocol/inspector uv run mcp-server-ietf\n```\n\n### Available Tools\n\nWhen connected to the server, the following tools are available:\n\n#### `list_docs_number`\nGet the total number of RFC documents available in the index.\n\n#### `get_doc`\nGet an RFC document by its number with pagination support.\n\nParameters:\n- `number`: The RFC number (e.g., \"1234\")\n- `start_line`: The line number to start from (default: 1)\n- `max_lines`: Maximum number of lines to return (default: 200)\n\n#### `search_rfc_by_keyword`\nSearch for RFC documents by keyword in their titles.\n\nParameters:\n- `keyword`: The search term to look for in RFC titles\n\n## Development\n\n### Setup Development Environment\n\n```bash\n# Install development dependencies\nuv install -e .[dev]\n```\n\nRun inspector with Makefile:\n\n```\nmake dev\n```\n\n### Running Tests\n\n```bash\n# Run tests\nuv run pytest\n```\n\nOr using the Makefile:\n\n```bash\nmake test\n```\n\n### Cache Location\n\nBy default, the server caches RFC documents and the index at `~/.cache/ietf-doc-server`.\n\n### Environment Variables\n\n- `LOG_LEVEL`: Set the logging level (default: \"DEBUG\")\n\n## License\n\nMIT License - See `LICENSE` file for details.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftizee%2Fmcp-server-ietf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftizee%2Fmcp-server-ietf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftizee%2Fmcp-server-ietf/lists"}