Skip to content

Commit c136ad9

Browse files
authored
docs: context7 config file (#605)
## Motivation and Context - removed unnecessary badges from readme - add context7 json file ## How Has This Been Tested? <!-- Have you tested this in a real application? Which scenarios were tested? --> ## Breaking Changes <!-- Will users need to update their code or configurations? --> ## Types of changes <!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] Documentation update ## Checklist <!-- Go over all the following points, and put an `x` in all the boxes that apply. --> - [ ] I have read the [MCP Documentation](https://modelcontextprotocol.io) - [ ] My code follows the repository's style guidelines - [ ] New and existing tests pass locally - [ ] I have added appropriate error handling - [ ] I have added or updated documentation as needed ## Additional context <!-- Add any other context, implementation notes, or design decisions -->
1 parent 921b1fd commit c136ad9

2 files changed

Lines changed: 32 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22

33
[![Maven Central](https://img.shields.io/maven-central/v/io.modelcontextprotocol/kotlin-sdk.svg?label=Maven%20Central)](https://central.sonatype.com/artifact/io.modelcontextprotocol/kotlin-sdk)
44
[![Build](https://github.com/modelcontextprotocol/kotlin-sdk/actions/workflows/build.yml/badge.svg?branch=main)](https://github.com/modelcontextprotocol/kotlin-sdk/actions/workflows/build.yml)
5-
[![Conformance Tests](https://github.com/modelcontextprotocol/kotlin-sdk/actions/workflows/conformance.yml/badge.svg)](https://github.com/modelcontextprotocol/kotlin-sdk/actions/workflows/conformance.yml)
6-
[![codecov](https://codecov.io/github/modelcontextprotocol/kotlin-sdk/graph/badge.svg?token=O2CFHNSFYM)](https://codecov.io/github/modelcontextprotocol/kotlin-sdk)
75

86
[![Kotlin](https://img.shields.io/badge/kotlin-2.2+-blueviolet.svg?logo=kotlin)](http://kotlinlang.org)
97
[![Kotlin Multiplatform](https://img.shields.io/badge/Platforms-%20JVM%20%7C%20Wasm%2FJS%20%7C%20Native%20-blueviolet?logo=kotlin)](https://kotlinlang.org/docs/multiplatform.html)
108
[![JVM](https://img.shields.io/badge/JVM-11+-red.svg?logo=jvm)](http://java.com)
119
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)
12-
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/modelcontextprotocol/kotlin-sdk)
10+
1311

1412
Kotlin Multiplatform SDK for the [Model Context Protocol](https://modelcontextprotocol.io).
1513
It enables Kotlin applications targeting JVM, Native, JS, and Wasm to implement MCP clients and servers using a
@@ -899,6 +897,7 @@ MCP server and client implementations with various transports.
899897
See the [samples overview](./samples/README.md) for a comparison table and detailed descriptions.
900898

901899
## Documentation
900+
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/modelcontextprotocol/kotlin-sdk)
902901

903902
- [API Reference](https://kotlin.sdk.modelcontextprotocol.io/)
904903
- [Model Context Protocol documentation](https://modelcontextprotocol.io)

context7.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"$schema": "https://context7.com/schema/context7.json",
3+
"projectTitle": "Model Context Protocol Kotlin SDK",
4+
"description": "Kotlin Multiplatform SDK for MCP — client and server implementations",
5+
"excludeFolders": [
6+
".github",
7+
"buildSrc",
8+
"config",
9+
"gradle/wrapper"
10+
],
11+
"excludeFiles": [
12+
"CONTRIBUTING.md",
13+
"LICENSE",
14+
"SECURITY.md",
15+
"codecov.yml",
16+
"gradlew",
17+
"gradlew.bat",
18+
".editorconfig",
19+
"knit.properties",
20+
"gradle.properties",
21+
"settings.gradle.kts",
22+
"conformance-baseline.yml",
23+
"run-conformance.sh",
24+
"detekt-baseline.xml",
25+
"detekt-baseline-test.xml",
26+
"detekt-baseline-main.xml",
27+
"detekt-baseline-commonMainSourceSet.xml",
28+
"detekt-baseline-commonTestSourceSet.xml"
29+
]
30+
}

0 commit comments

Comments
 (0)