diff --git a/apps/website/content/docs/index.mdx b/apps/website/content/docs/index.mdx
index 090d695..3eefa5e 100644
--- a/apps/website/content/docs/index.mdx
+++ b/apps/website/content/docs/index.mdx
@@ -13,7 +13,7 @@ From a high level perspective, AgentStudio is a collection of the following tool
We are releasing all of these components as open-source software under the [MIT License](https://opensource.org/licenses/MIT).
-As we are a small team, some of these components are still in the early stages of development and we are still working on polishing them. We will be making them available gradually as we are confident with their stability and capabilities. Meanwhile, any feedback and contributions are more than welcome!
+Some of these components are still in the early stages of development and we are still working on polishing them. We will be making them available gradually as we are confident with their stability and capabilities. Meanwhile, any feedback and contributions are more than welcome!
## What is AgentLayer?
diff --git a/apps/website/content/docs/mcp/mcp-server.mdx b/apps/website/content/docs/mcp/mcp-server.mdx
index c71f549..cbb3a63 100644
--- a/apps/website/content/docs/mcp/mcp-server.mdx
+++ b/apps/website/content/docs/mcp/mcp-server.mdx
@@ -1,12 +1,41 @@
+import { Callout, ImageZoom, Tabs } from 'nextra/components'
+
# MCP Server
+
+Currently the AgentStudio MCP server is offered as a runnable npm package which can be started locally. A remote MCP server will be available soon.
+
+
## Installation
```sh npm2yarn
-npx @agentstudio/mcp-server [API_KEY]
+npx -y@agentstudio/mcp-server [API_KEY]
```
API key can be provided either as an argument or as an environment variable `AGENT_API_KEY`.
-## Usage
+## Testing with the MCP Inspector
+
+The [`@modelcontextprotocol/inspector` package](https://github.com/modelcontextprotocol/inspector) is a visual testing tool for MCP servers.
+
+You can run it locally by running the following command:
+
+```sh
+npx -y @modelcontextprotocol/inspector
+```
+
+Then you can enter the the start command for the AgentStudio MCP server as follows:
+
+
+
+The API Key can be provided either as an argument or as an environment variable `AGENT_API_KEY`.
+
+Once you have connected to the MCP server, you should see the "Resources" and "Tools" sections activated, where you can list the available resources and tools, and perform resource read or tool call operations.
+
+
+ 
+ 
+
+
+
diff --git a/apps/website/public/images/mcp-inspector-configuration.png b/apps/website/public/images/mcp-inspector-configuration.png
new file mode 100644
index 0000000..d428851
Binary files /dev/null and b/apps/website/public/images/mcp-inspector-configuration.png differ
diff --git a/apps/website/public/images/mcp-inspector-resources.png b/apps/website/public/images/mcp-inspector-resources.png
new file mode 100644
index 0000000..2339c7e
Binary files /dev/null and b/apps/website/public/images/mcp-inspector-resources.png differ
diff --git a/apps/website/public/images/mcp-inspector-tools.png b/apps/website/public/images/mcp-inspector-tools.png
new file mode 100644
index 0000000..6ba3d9c
Binary files /dev/null and b/apps/website/public/images/mcp-inspector-tools.png differ