Skip to content

Commit e813e86

Browse files
committed
fix closing p tag
Signed-off-by: Ronan Flynn-Curran <[email protected]> close tags to fix deploy preview Signed-off-by: Ronan Flynn-Curran <[email protected]> close tags Signed-off-by: Ronan Flynn-Curran <[email protected]>
1 parent db09f07 commit e813e86

File tree

4 files changed

+45
-4
lines changed

4 files changed

+45
-4
lines changed

.netlify/netlify.toml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
plugins = []
2+
headers = []
3+
redirects = []
4+
5+
[functions]
6+
7+
[functions."*"]
8+
9+
[build]
10+
publish = "/Users/ronanfc/localhost/apollo-mcp-server"
11+
publishOrigin = "default"
12+
13+
[build.environment]
14+
15+
[build.processing]
16+
17+
[build.processing.css]
18+
19+
[build.processing.html]
20+
21+
[build.processing.images]
22+
23+
[build.processing.js]
24+
25+
[build.services]

.netlify/state.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"siteId": "42b2ee0e-5fae-4379-983c-fe558b458183"
3+
}

agent-config.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"mcpServers": {
3+
"<your-mcp-server-name>": {
4+
"command": "<localpath>/apollographql/apollo-mcp-server/target/debug/apollo-mcp-server",
5+
"args": [
6+
"--directory",
7+
"<localpath>/apollographql/apollo-mcp-server/<graphql-directory>",
8+
"--schema",
9+
"myapi.graphql",
10+
"--endpoint",
11+
"https://<mymcpendpoint>.app/",
12+
"--introspection"
13+
]
14+
}
15+
}
16+
}

docs/source/index.mdx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ redirectFrom:
77
---
88

99
<PreviewFeature>
10-
1110
This feature is in [preview](/graphos/resources/feature-launch-stages#preview). Your questions and feedback are highly valued—don't hesitate to get in touch with your Apollo contact or post in the [Apollo Community MCP Server Category](https://community.apollographql.com/c/mcp-server/41).
12-
1311
</PreviewFeature>
1412

1513
Apollo MCP Server provides a standard way for AI models to access and orchestrate your Graph APIs - by making GraphQL API operations available to AI clients as MCP tools. You can use Apollo MCP Server with any GraphQL API.
@@ -24,15 +22,14 @@ Apollo MCP Server provides a standard way for AI models to access and orchestrat
2422
<!-- Getting Started CTA -->
2523
<div class="mb-16 rounded-lg border border-blue-200 bg-gradient-to-r from-blue-50 to-indigo-50 p-8">
2624
<h2 class="mb-4 text-2xl font-bold">Getting Started</h2>
27-
<p class="mb-6 text-gray-700">Get up and running in a couple of minutes with the Quickstart. Topics include how to:
25+
<p class="mb-6 text-gray-700">Get up and running in a couple of minutes with the Quickstart. Topics include how to:</p>
2826

2927
<ul class="list-inside list-disc space-y-2 text-gray-700 mb-6">
3028
<li>creating your own MCP server (starting from scratch or using an existing Graph)</li>
3129
<li>connect and test your MCP server in an AI client application (like Claude or Cursor)</li>
3230
<li>exposing your GraphQL API operations as MCP tools </li>
3331
</ul>
3432

35-
</p>
3633
<div class="flex gap-4">
3734
<a href="/docs/apollo-mcp-server/quickstart" class="inline-block rounded-lg bg-blue-600 px-6 py-3 font-semibold text-white transition hover:bg-blue-700">Quickstart → </a>
3835
</div>

0 commit comments

Comments
 (0)